Setting Show/Hide Time Delay for Bootstrap 3 Tooltips - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Tooltip

Description

Setting Show/Hide Time Delay for Bootstrap 3 Tooltips

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
 <head> 
  <meta charset="utf-8"> 
  <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <title>Example of Setting Show/Hide Time Delay for Bootstrap 3 Tooltips</title> 
<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/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <script type="text/javascript">
$(document).ready(function(){
    // Showing and hiding tooltip with same speed
    $(".tooltip-tiny").tooltip({
        delay: 500<!--from  w  ww .j  a  v  a2s  .  c o  m-->
    });
    
    // Showing and hiding tooltip with different speed
    $(".tooltip-large").tooltip({
        delay: {show: 0, hide: 2000}
    }); 
});
</script> 
  <style type="text/css">
  .bs-example{
      margin: 100px 50px;
    }
  .a{
    margin: 50px;
  }
</style> 
 </head> 
 <body> 
  <div> 
   <div> 
    <a href="#" class="tooltip-tiny" data-toggle="tooltip" title="A small tooltip">Tooltip</a> 
    <a href="#" class="tooltip-large" data-toggle="tooltip" title="A large tooltip that displayed instantly on mouse hover but hide after 2000 milliseconds.">Large tooltip</a> 
   </div> 
  </div>   
 </body>
</html>

Related Tutorials