what part of a jQuery event object points to where the mouse is over?
Fill in the missing part:
- (function($)
- {
- $(document).mousemove(function(e)
- {
- //Code here to find out which element the mouse is over
- });
- })(jQuery)
What do I use to get the element the mouse is current on top of?