Re: [jQuery] Help Appending HTML

2006-09-19 Thread Mike Alsup
jQuery knows how to handle table/tbody issues. That maybe true. The tbody element is implicit, even if you don't have it in the html source, it is part of the DOM tree. In IE you must use the tbody element to append rows to... ___ jQuery mailing

[jQuery] Help Appending HTML

2006-09-18 Thread Rey Bango
Hi everyone. I'm a little stuck trying to append a row to an existing table. I do a simple ajax call that returns the HTML row to insert into the table: $.get(product.cfm, { productid: thisID }, function( msg ){ /* Add the new row to the cart table */

Re: [jQuery] Help Appending HTML

2006-09-18 Thread Rey Bango
Hi Patrick, Thanks for the feedback. I was missing a column as you mentioned but adding that in didn't resolve. Same effect just with an additional column. :o) I did manage, however, to add this code which actually works: $(#cartTable).append( 'tr valign=top id=cartRow_' + thisID +'/tr' );

Re: [jQuery] Help Appending HTML

2006-09-18 Thread limodou
On 9/19/06, Rey Bango [EMAIL PROTECTED] wrote: Hi Patrick, Thanks for the feedback. I was missing a column as you mentioned but adding that in didn't resolve. Same effect just with an additional column. :o) I did manage, however, to add this code which actually works:

Re: [jQuery] Help Appending HTML

2006-09-18 Thread Rey Bango
Thanks for the suggestion Limodou. I'll check that out. Rey... ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/