Search code examples
twitter-bootstrap-tooltipclonenode

How do I prevent Bootstrap Tooltips being cloned?


Workarounds:

Is there any way to remove the original tooltip?

I have also tried:

  • $(input).tooltip('disable');
  • $(input).tooltip({ items: ':not(.menu)' });
  • $(input).tooltip( "option", "disabled", true );
  • $(input).tooltip({ track: true });

Solution

  • $(input).tooltip('destroy'); did the trick.