Answers for "on click in jquesry"

10

on click jquery

$( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});
Posted by: Guest on May-24-2020
-2

.on click jquery

1
2
3
$( "#dataTable tbody" ).on( "click", "tr", function() {
  console.log( $( this ).text() );
});
Posted by: Guest on December-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language