Setting Title for Popovers - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Popover

Description

Setting Title for Popovers

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 Title for Bootstrap 3 Popovers</title> 
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> 
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> 
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> 
  <script type="text/javascript">
$(document).ready(function(){
    $("#myPopovers a").popover({
        title : 'Default Title Text'
    });<!--from   ww  w .  j  a  v a  2s . c om-->
});
</script> 
  <style type="text/css">
    .a{
        margin: 5px;
    }
</style> 
 </head> 
 <body> 
  <div> 
   <div id="myPopovers"> 
    <a href="#" class="btn btn-default" data-toggle="popover" data-content="This is a link without title attribute. The title text of this popover is defined in JavaScript.">Popover</a> 
    <a href="#" class="btn btn-primary" data-toggle="popover" data-content="This is another link without the title attribute. The title text of this popover is also defined in JavaScript.">Another Popover</a> 
   </div> 
  </div>   
 </body>
</html>

Related Tutorials