Hi folks…
Some of my users are reporting that they get some tool-tip text in Summernote which won’t go away again, and they have to reload my app to make it disappear… like this:
Has anyone else seen this and found a solution?
Hi folks…
Some of my users are reporting that they get some tool-tip text in Summernote which won’t go away again, and they have to reload my app to make it disappear… like this:
Has anyone else seen this and found a solution?
This is a known quirk with Summernote, especially when tooltips (often Bootstrap-based) don’t get properly disposed after certain DOM changes or modal interactions.
Here are a few strategies you can try:
Disable tooltips entirely if you don’t need them:
$('#yourEditorId').summernote({
tooltip: false
});
Manually remove lingering tooltips after Summernote initializes or after specific interactions:
$('[data-toggle="tooltip"]').tooltip('dispose');
$('.tooltip').remove(); // Just in case any are still hanging around
Hook into Summernote events like onBlur
, onChange
, or custom toolbar interactions to clean up tooltips:
$('#yourEditorId').on('summernote.blur', function() {
$('.tooltip').remove();
});
Wow, thank you so much Ben… I’ll try out some of those!