jQuery Focus fails on firefox

前端 未结 4 1145
既然无缘
既然无缘 2020-11-27 07:34

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

4条回答
  •  萌比男神i
    2020-11-27 07:47

    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);
    });
    

提交回复
热议问题