HTML CSS examples for Bootstrap:Popover
Creating Custom Template for Popovers
<!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 Creating Custom Template for Bootstrap 3 Popovers</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({ html: true, template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div><div class="popover-footer"><a href="#" class="btn btn-info btn-sm">Close</a></div></div>' });<!-- w w w. j a va 2s . c o m--> // Custom jQuery to hide popover on click of the close button $(document).on("click", ".popover-footer .btn" , function(){ $(this).parents(".popover").popover('hide'); }); }); </script> <style type="text/css"> .bs-example{ margin: 150px 50px; } /* Styles for custom popover template */ .popover-footer{ padding: 6px 14px; background-color: #f7f7f7; border-top: 1px solid #ebebeb; text-align: right; } </style> </head> <body> <div> <button type="button" class="btn btn-primary btn-lg" data-toggle="popover" title="Custom Popover Template" data-content="A simple example of a customized Bootstrap popover that displays a footer with close button on every popover without adding any extra markup to the popover HTML code.">Customized Popover</button> </div> </body> </html>