HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery trigger() Method</h1> <button>Click Me</button> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ alert("Button was clicked"); }); $("button").trigger("click"); }); </script> <p><strong>Note</strong>: Click on the 'Run' button to trigger the 'button' click.</p> </body> </html>
OUTPUT
×

Save as Private