> Im using insertCell() and insertRow() to create a dynamic table
> then using .innerhtml to populate the cell - how can this be
> done using jquery?

You can continue to call the DOM methods if you want:

$("#mytable")[0].insertRow()

Or you can just append the row:

$("#mytable").append("<tr><td>new row</td></tr>");



_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to