Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Bootstrap hide.bs.tooltip event
The hide.bs.tooltip event in Bootstrap fires when the tooltip is about to be hidden.
Click the hide button first −
$(".btn-default").click(function(){
$("[data-toggle='tooltip']").tooltip('hide');
});
On clicking above the hide.bs.tooltip event fires and an alert generates −
$("[data-toggle='tooltip']").on('hide.bs.tooltip', function(){
alert('Tooltip will hide now.');
});
You can try to run the following code to implement the hide.bs.tooltip event −
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>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> Advertisements
