Jquery: How hide or close all open bootstrap tooltip

前端 未结 5 1841
温柔的废话
温柔的废话 2021-02-20 08:42

This way I am showing bootstrap tooltip from my validation function.

var options = { html: true, placement: \'bottom\', title: \'
5条回答
  •  情话喂你
    2021-02-20 09:15

    Use the below code for hiding all tooltips.

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

    -Help :)

提交回复
热议问题