Disabling tab focus on form elements

后端 未结 7 1420
死守一世寂寞
死守一世寂寞 2020-12-04 15:00

I have several divs within the same form. What I am trying to do is to disable the Tab key in one of the divs in the form without disabl

7条回答
  •  再見小時候
    2020-12-04 15:52

    $('.tabDisable').on('keydown', function(e)
    { 
      if (e.keyCode == 9)  
      {
        e.preventDefault();
      }
    });
    

    Put .tabDisable to all tab disable DIVs Like

    First Div
    Second Div
    Third Div

提交回复
热议问题