
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap Popover Show Method
Display the popover using the popver(“show”) method.
You need to set the popover as −
<a href="#" data-toggle="popover" title="Demo Header" data-content="This is demo text!"> Sample </a>
Now display the popover −
$(document).ready(function(){ $(".btn-default").click(function(){ $("[data-toggle='popover']").popover('show'); }); });
Let us see the complete example display how to implement the popover(“show”) method −
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>Demo</h3> <a href="#" data-toggle="popover" title="Demo Header" data-content="This is demo text!">Sample</a> <div> <p>The following is a demo button:</p> <button type="button" class="btn btn-default">Demo Button</button> </div> </div> <script> $(document).ready(function(){ $(".btn-default").click(function(){ $("[data-toggle='popover']").popover('show'); }); }); </script> </body> </html>
Advertisements