Answers for "jquery onclick in for"

11

jquery onclick function

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

jquery on click

$( "p" ).on( "click", function() {
  alert( $( this ).text() );
});
Posted by: Guest on January-19-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language