Jump to content

Need Help with Prepend AJAX


gaza165

Recommended Posts

below i am using this code to bring back chat posts from the database... i am prepending the result to a table... but what i want to do is make every other TR a different bg colour.

 

so like this

 

<tr class="second">NEWER POST</tr>

<tr class="first">First Post</tr>

 

because i am using prepend to put the latest record at the top of the table... im not sure how to add the class to each tr

 

function Get_Message() {
if(!locked){
$.ajax({
type: "GET",
url: "action/getmessages.php",
beforeSend: function(){
    // Handle the beforeSend event
    locked = true;
},
success: function(data){

	$('table.shoutbox').prepend(data);
	if(data != '') {
	PlaySound();
	}
	locked = false;

}
});
}
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.