Description: The other DOM element involved in the event, if any.
For mouseout, indicates the element being entered; for mouseover, indicates the element being exited.
mouseout
mouseover
$("a").mouseout(function(event) { alert(event.relatedTarget.nodeName); // "DIV" });
Submit feedback about this site to: