I have a $(\"#settings\") div with multiple bootstrap tooltips attached to the child elements.
$(\"#settings\")
For example,
I had a situation in Bootstrap 3 with tooltips on a where $('body').tooltip('destroy') would not work on tooltips initialized via $('[data-toggle="tooltip"]').tooltip({container:'body'}).
$('body').tooltip('destroy')
$('[data-toggle="tooltip"]').tooltip({container:'body'})
Ended up using onchange="$('.tooltip').remove()" to remove all tooltips. This method works where BS methods would not. Hope it helps someones with a similar situation
onchange="$('.tooltip').remove()"