Answers for "which attribute is used to create a tooltip in bootstrap"

2

bootstrap tooltip

$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})
Posted by: Guest on October-11-2020
0

tooltip bootstrap events

$('#myTooltip').on('hidden.bs.tooltip', function () {
  // do something…
})
Posted by: Guest on December-28-2021

Code answers related to "which attribute is used to create a tooltip in bootstrap"

Browse Popular Code Answers by Language