Code sample: $("input#MyTextInput").blur( function() { setTimeout("$('#MyTextInput').focus()",0); } );
That works in FF. ---------------------- $("input#MyTextInput").blur( function() { $('#MyTextInput').focus(); } ); That does not work in FF. --------------------- Trying to re-focus back on an input after a blur event. IE works in more circumstances, but FF does not. Is there an easier way? Glen