Just to follow up and hopefully help anyone else with this problem.
The issue is not jQuery or FF really, but just how javascript is
handled. Basically onBlur happens after the code is executed, meaning
that after this.focus(), it is still blurred.
So the solution is this:
setTimeout(function () { obj.focus() }, 50);

Googling this phrase led me to find this solution: "javascript focus
after onchange"

Matt

Reply via email to