Skip to content

Instantly share code, notes, and snippets.

@laustdeleuran
Created February 6, 2012 15:32
Show Gist options
  • Save laustdeleuran/1752684 to your computer and use it in GitHub Desktop.
Save laustdeleuran/1752684 to your computer and use it in GitHub Desktop.
jQuery Event Listener - Anonymous functions and contect
$(document).ready(function(){
var $links = $('a');
$links.click(function(e){
e.preventDefault();
var a = "Wow, you clicked a link!";
alert(a);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment