Skip to content

Instantly share code, notes, and snippets.

@jihao
Created December 13, 2011 05:12
Show Gist options
  • Save jihao/1470714 to your computer and use it in GitHub Desktop.
Save jihao/1470714 to your computer and use it in GitHub Desktop.
jQuery.ready.js
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a").click(function(event){
alert("As you can see, the link no longer took you to jquery.com");
event.preventDefault();
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment