Turn the Tooltip Bootstrap functionality off

前端 未结 5 1762
不知归路
不知归路 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:35

    To permanently disable a tooltip:

    $('[data-toggle="tooltip"]').tooltip("disable");

    To stop the tooltip from being displayed on hover but have the ability to re-enable it:

    $('[data-toggle="tooltip"]').tooltip("destroy");

    $('[data-toggle="tooltip"]').tooltip(); // re-enabling

提交回复
热议问题