Answers for "onclick button click jquery"

11

jquery onclick function

$( "#other" ).click(function() {
  $( "#target" ).click();
});
Posted by: Guest on June-03-2020
-1

jquery on click

$(document).on('click touch', '.your-element', function () { ... });
Posted by: Guest on March-10-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language