I'm going to be replacing the contents of TBODY elements with an ajax call
which results in TR elements.  Will this:
$('#myTbody').load(myUrlAndSelector) 

reconstruct the table body properly or will I have to manually process the
row elements myself along these lines:

$.get(myUrl, function(data){
  $(data).appendTo('#myTbody');
});
-- 
View this message in context: 
http://www.nabble.com/replacing-TBODYs-tp14973659s27240p14973659.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to