Hello All,
I need to dynamically append table to a row of another table .
for eg .
I first create a div Then I insert a table after this
$('<table id="container"> <tr> <td> </td> <td> <input type="checkbox" /> </td> <td> </td> </tr> </table>')
$('<<tr> <td> </td> <td> <input type="checkbox" /> </td> <td> </td> </tr> >').appendTo('#container');
Now I would like to add another table with rows based on the selection of the checkbox (i.e i need to add table after the row of the selected checkbox )
Can anyone guide me this in jquery ?
Mithun