- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap .tooltip("destroy") method
Use the tooltip(“destroy”) method in Bootstrap to detroy the tooltip −
$(".btn-default").click(function(){ $("[data-toggle='tooltip']").tooltip('destroy'); });
The following example has two buttons, one for “Show Tooltip” and another for “Destroy Tooltip” −
Show Tooltip
$(".btn-primary").click(function(){ $("[data-toggle='tooltip']").tooltip('show'); });
Destroy Tooltip
$(".btn-default").click(function(){ $("[data-toggle='tooltip']").tooltip('destroy'); });
Here is the complete code to implement the tooltip(“destroy”) method −
Example
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h3>Demo</h3> <a href="#" data-toggle="tooltip" title="Tooltip is visible!">Tooltip will be visible here</a> <div> <button type="button" class="btn btn-primary">Show Tooltip</button> <button type="button" class="btn btn-default">Destroy Tooltip</button> </div> </div> <script> $(document).ready(function(){ $(".btn-primary").click(function(){ $("[data-toggle='tooltip']").tooltip('show'); }); $(".btn-default").click(function(){ $("[data-toggle='tooltip']").tooltip('destroy'); }); }); </script> </body> </html>
- Related Articles
- Bootstrap .popover("destroy") method
- Bootstrap .tooltip("hide") method
- Bootstrap .tooltip("toggle") method
- Bootstrap .tooltip(options) method
- tooltip("show") method in Bootstrap
- How to use Bootstrap Tooltip Plugins
- destroy() method in Tkinter - Python
- How would I make destroy() method in Tkinter work with my code?
- Bootstrap .popover(options) method
- Bootstrap .tab("show") method
- Bootstrap .modal("hide") method
- Bootstrap .popover("show") method
- Bootstrap .modal("show") method
- Bootstrap .modal("toggle") method
- modal(options) method in Bootstrap

Advertisements