Hello All, I'm not able to get the below code to work.
$("#grid_table td:nth-child(10) input").live("onchange",function () {
alert("changed");
});
am I missing something here? Thanks.
Ravi
Hello All, I'm not able to get the below code to work.
$("#grid_table td:nth-child(10) input").live("onchange",function () {
alert("changed");
});
am I missing something here? Thanks.
Ravi
Have you tried this:
$("#grid_table td:nth-child(10) input").change(function () {
alert("changed");
});
to make sure your selector is working properly?
Try changing onchange
to change
..
$("#grid_table td:nth-child(10) input").live("change",function () {
alert("changed");
});
If that doesn't work I would verify your selector is working correctly.