<!doctype html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" </script> <script> $(document).ready(function() { $("a").click(function() { alert("Ehllo world"); }); }); </script> </head> <body> <a href="">Link</a> </body> </html> ~