Re: [jQuery] Help Appending HTML - UPDATED with sample files

2006-09-19 Thread Rey Bango
To add to this, the two links will render results (albeit not correct) in FF but not in IE 6. Rey... Rey Bango wrote: > Hey guys, > > I created two very basic test files that display the behavior that I'm > describing: > > Appends to a table: > http://www.intoajax.com/test.htm > > > Appends

[jQuery] Help Appending HTML - UPDATED with sample files

2006-09-19 Thread Rey Bango
Hey guys, I created two very basic test files that display the behavior that I'm describing: Appends to a table: http://www.intoajax.com/test.htm Appends to a tbody: http://www.intoajax.com/test2.htm Neither work correctly and all I'm doing is returning a row with 3 cells. If you guys could

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 l

Re: [jQuery] Help Appending HTML

2006-09-18 Thread Klaus Hartl
limodou schrieb: > 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 ac

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/

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: > > $("#cartTa

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( '' ); $( "#ca

Re: [jQuery] Help Appending HTML

2006-09-18 Thread Patrick Hall
Hi Rey, Just a guess, but could it be relevant that you have a mismatch in the number of table data elements? I see 4 s in the first snippet, and 5 in the second. > > > 2 Pints (16-oz) - Coconut Cream Concentrate - BUY 1 GET 1 > FREE! > > > > $("#cartTable"

[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 */ $("#cartTable").