Turn the Tooltip Bootstrap functionality off

前端 未结 5 1757
不知归路
不知归路 2020-12-24 11:04

According the documentation is is possible to turn off the functionality just doing $(\'body\').off(\'.alert.data-api\').
In the case of tooltip I tried the

5条回答
  •  爱一瞬间的悲伤
    2020-12-24 11:38

    Can you try:

    $('a[rel=tooltip]').tooltip();
    $('a[rel=tooltip]').off('.tooltip');
    

    Don't forget to change the selector. Works fine for me... http://jsfiddle.net/D9JTZ/

提交回复
热议问题