jquery demo
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Demo</title> <script src="jquery.js"></script> <script> $(document).ready(function(){ $("a").click(function(event){ alert("Thanks for visiting!"); event.preventDefault(); }); }); </script> </head> <body> <a href="http://jquery.com/">jQuery</a> </body> </html>