[jQuery] $(el).focus(); (formerly Fire Event)

[jQuery] $(el).focus(); (formerly Fire Event)

Hi all
So, I've been having problems re-focusing one of my elements.
Turns out I can fire an event once my Thickbox closes. So straight
after, I use the following:
$(el).oneblur(function(){focusMe(this);});
focusMe = function(el)
{
$(el).focus();
}
This doesn't seem to be firing as expected and focusing the element. Is
jQuery taking over the .focus() method and using it as onfocus?
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/