Answers for "jquery trigger method equivalent in javascript"

2

jquery trigger

$( "#foo" ).on( "click", function() {
  alert( $( this ).text() );
});
$( "#foo" ).trigger( "click" );

$( "#foo" ).on( "custom", function( event, param1, param2 ) {
  alert( param1 + "\n" + param2 );
});
$( "#foo").trigger( "custom", [ "Custom", "Event" ] );
Posted by: Guest on May-07-2020

Code answers related to "jquery trigger method equivalent in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language