Click each button to see the difference between trigger()
and triggerHandler()
.
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script>/* w w w . j a v a 2s . c o m*/ <script> $(document).ready(function(){ $("input").select(function(){ $("input").after(" Text marked!"); }); $("#btn1").click(function(){ $("input").trigger("select"); }); $("#btn2").click(function(){ $("input").triggerHandler("select"); }); }); </script> </head> <body> <p><input type="text" value="Hello World"></p> <button id="btn1">trigger()</button> <button id="btn2">triggerHandler()</button> </body> </html>