I need to invoke a mouse click event with out clicking in jquery datatable programatically.
In the initial load my table will have a empty row with default values. I have written a event like
$("#demoGrid").on('click', 'tbody td:not(:first-child)', function (e) {
});
I need to invoke this on document.ready() method. Is it Possible? i want the click should happen in the second column of first row column as well. Please help.