Disable bootstrap tab clicks

后端 未结 9 1184
走了就别回头了
走了就别回头了 2021-01-14 15:24

I am using bootsrap tabs for a registration form , I changed navigation of tabs using onclick event of next and previous button . But still that tabs click works and being

9条回答
  •  余生分开走
    2021-01-14 16:02

    I used

    style="pointer-events: none;"
    

    something like:

    
    

    seems to be doing the trick. still able to perform navigation using .click() function. which is what most are looking for.

    something like

    $('.nav [href="' + target + '"]').click()
    

    Happy coding!

提交回复
热议问题