Skip to content

Instantly share code, notes, and snippets.

@adhusson
Created June 16, 2009 08:57
Show Gist options
  • Save adhusson/130601 to your computer and use it in GitHub Desktop.
Save adhusson/130601 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$("a").click(function(event){
event.preventDefault();
$.get('http://localhost:8000/j', function(d,t) {
console.log(this); // <this> refers to the GET Object. How do I refer to the "a" that triggered the request?
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment