Bootstrap show.bs.tooltip event


The show.bs.tooltip event in Bootstrap fires when the tooltip is about to be displayed −

$("[data-toggle='tooltip']").on('show.bs.tooltip', function(){
  alert('Tooltip will be visible now.');
});

The "data-toggle" attribute is set before as an <a> tag attribute, since the Bootstrap generates from there itself −

<a href="#" data-toggle="tooltip" title="1PM-4PM!">
  Timings
</a>

You can try to run the following code to implement the show.bs.tooltip event −

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>Event</h3>
    <p>Here tooltip will be displayed using the "Show" buttpn and can be hidden using the "Hide" button.</p>
    <a href="#" data-toggle="tooltip" title="1PM-4PM!">Timings</a>
    <div>
      <button type="button" class="btn btn-primary">Show</button>
      <button type="button" class="btn btn-default">Hide</button>
    </div>  
  </div>
  <script>
    $(document).ready(function(){
      $(".btn-primary").click(function(){
        $("[data-toggle='tooltip']").tooltip('show');
      });
      $(".btn-default").click(function(){
        $("[data-toggle='tooltip']").tooltip('hide');
      });
      $("[data-toggle='tooltip']").on('show.bs.tooltip', function(){
        alert('Tooltip will be visible now.');
      });
      $("[data-toggle='tooltip']").on('shown.bs.tooltip', function(){
        alert('Tooltip is completely visible now.');
      });
      $("[data-toggle='tooltip']").on('hide.bs.tooltip', function(){
        alert('Tooltip will hide now.');
      });
      $("[data-toggle='tooltip']").on('hidden.bs.tooltip', function(){
        alert('Tooltip is completely hidden now.');
      });
   });
   </script>
 </body>

</html>

Updated on: 17-Jun-2020

316 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements