Skip to content

Instantly share code, notes, and snippets.

@shaik2many
Created February 18, 2013 03:33
Show Gist options
  • Save shaik2many/4974965 to your computer and use it in GitHub Desktop.
Save shaik2many/4974965 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(function() {
$("a").click(function(e) {
alert("Hello World!");
e.preventDefault();
});
});
</script>
</head>
<body>
<a href="http://jquery.com/">Hello World!</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment