From jquery how to insert o
<tr><td>some other data</td></tr>
after the tr id=user
<table> <tr id="user"> <td>some data</td> </tr> </table>
Like this...Use the jQuery after() method
$("#user").after("<tr><td>some other data</td></tr>");
2.1m questions
2.1m answers
60 comments
57.0k users