<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $(document).ready(function(){ $("#test").click(function(){ alert('1'); }); $("#test").click(function(){ alert('1'); }); }); </script> </head> <body> <p>If you click on me, I will disappear.</p> <p id="test">Click me away!</p> <p>Click me too!</p> </body> </html>