I’m using jQuery $.ajax to load my table row data like
<table id='row-data'>
<tr><td>1001</td></tr>
<tr><td>1322</td></tr>
<tr><td>1551</td></tr>
<tr><td>2341</td></tr>
</table>
In above code I load all <tr> with $.ajax
but after load data when I fire any event on <tr> then it’s not working,
so how to possible to access these row?
Please provide me solution for this problem.
Use
jQuery.live,refer to here:http://api.jquery.com/live/It will bind events to dynamically loaded dom.
Best,