0

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.

Vishnu K
  • 128
  • 1
  • 9

1 Answers1

0

At Last i Got it

$('#demoGrid tbody td:eq(2)').click();
Vishnu K
  • 128
  • 1
  • 9