Hi, i am just wondering. ,why is that onclick will not trigger or fire out in my table,example when my data loaded to the table, when i click a table row it will not trigger yet the onclick but when i double click on it.Now the event will function properly.
please enlighten my mind.
request data via ajax.HTML Code:<table> <tr> <tr class="b" onclick="myFunction('03');"> <td><span>1</span></td> <td><span>pencil</span></td> </tr> <tr class="b" onclick="myFunction('05');"> <td><span>2</span></td> <td><span>ruler</span></td> </tr> <tr class="b" onclick="myFunction('06');"> <td><span>3</span></td> <td><span>table</span></td> </tr> </table
here is my code in clickCode:$.ajax{( ......., ........, success: function(dtl){ //load table data here. } });
Code:$(function(){ $('tr.b').onclick(function(){ alert('I am click'); }); });



Reply With Quote


Bookmarks