gaza165 Posted June 29, 2009 Share Posted June 29, 2009 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 https://forums.phpfreaks.com/topic/164082-need-help-with-prepend-ajax/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.