Answers for "body click function click++ jquery"

22

jquery click event

$('#selector').on('click',function(){
    //Your code here
});
Posted by: Guest on April-08-2020
6

jquery addeventlistener

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

Browse Popular Code Answers by Language