Using Event Object without actually passing it to the handler.
In the code below I was able to use the event object 'e' in the handler function as I have passed the Event Object reference to the callback function,
$("#somediv").bind('mousemove', function(e){ //event object reference passed
//the event object here is 'e'
pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
});
Is it possible to use the event object in the callback without passing the event object reference to the callback like this,
$("#somediv").bind('mousemove', function(){ //no event object reference passed
//the event object here is 'e'
pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
});