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

Live Demo

<!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>

Updated on: 17-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements