I\'ve been some testing reserching for this other question, when I noticed something very peculiar. FF4/5 fail to fire the focus jQuery event. The other questio
focus
This worked for me in Firefox 38. I needed to test different delay ms. Thanks to @camaleo comment.
$(document).ready(function() { setTimeout(function() { $('#myid').focus(); }, 100); });