Published
- 1 min read
update tooltip jquery
The solution for this is noted below
update tooltip jquery
Solution
$('#topic_1').tooltip({ title: 'Hello' }).tooltip('show')
setTimeout(function () {
$('#topic_1').tooltip('dispose').tooltip({ title: 'Goodbye' }).tooltip('show')
}, 5000)
Try other methods by searching on the site. That is if this doesn’t work