if I create tooltips and popovers via BS' tooltip() and popover() methods, is there a need to do any explicit destroying of said creations if the DOM changes and the affected elements are no longer present? Am I creating JS dust bunnies by NOT explicitly destroying?
to put toolips on dynamic content you should use a delegate as such:$('body').toolip({selector: '.has-tooltip'});
and in this case, destroying is not needed.