I want to trigger an event onchange of data of a table cell.
// table generating code
<table id=custorder2 > <head> <tr> <td>change it</td> </tr> </head> <tbody> <tr> <td>1</td> </tr> </tbody> </table>
// for triggering event something like this
$(document).ready(function(){
$('#custorder2 tr td').change(function() {
console.log("call");
})
})
on change of cell value this call should be printed.