Suppose I do this:
$(target).blur(function(e){
//do stuff
});
Is there a way to fetch the object that was clicked on in order to trigger the blur action?
I tried using e.target
, but that appears to be returning the object attached to the blur action rather than the clicked object.