Triggering the Popovers on Hover - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Popover

Description

Triggering the Popovers on Hover

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 Triggering the Bootstrap 3 Popovers on Hover</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(){
    $('[data-toggle="popover"]').popover({
    placement : 'top',
        trigger: 'hover'
    });<!--   w  ww.j  a va 2  s  .  co  m-->
});
</script> 
  <style type="text/css">
  .button{
    margin: 5px;
  }
</style> 
 </head> 
 <body> 
  <div> 
   <button type="button" class="btn btn-primary" data-toggle="popover" title="Popover title" data-content="Default popover">Popover</button> 
   <button type="button" class="btn btn-success" data-toggle="popover" title="Popover title" data-content="Another popover">Another popover</button> 
   <button type="button" class="btn btn-info" data-toggle="popover" title="Popover title" data-content="A larger popover to demonstrate the max-width of the Bootstrap popover.">Large popover</button> 
   <button type="button" class="btn btn-warning" data-toggle="popover" title="Popover title" data-content="The last popover!">Last popover</button> 
  </div>   
 </body>
</html>

Related Tutorials