When the FocusOut event is raised, how do you know which element receives the focus?
The correct way seems to be to use the event\'s relatedTarget p
//attach a focus out handler
$("#id").focusOut($El_FocusOut);
//display the id of new element being focused onto
function $El_FocusOut($eventArgs){
//firefox specific focusout active element logi
var activeElement = $eventArgs.originalEvent.explicitOriginalTarget;
alert($(activeElement).attr("id"))
}