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(options) method
To activate the popover with an option, you need to use the .popver(options) method −
Set the button for popover as −
<button class="btn btn-default btn-md"> Timings </button>
Set the popover title, header, etc. All of these comes under popover options −
$(document).ready(function(){
$('.btn-default').popover({title: "Event Timings", content: "3PM - 6PM", placement: "right"});
});
Let us see the complete example of the .popover(method) −
Example
<!DOCTYPE html>
<html>
<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>Information</h3>
<p>Details about the event:</p>
<div>
<button class="btn btn-default btn-lg">Timings</button>
</div>
</div>
<script>
$(document).ready(function(){
$('.btn-default').popover({title: "Event Timings", content: "3PM - 6PM", placement: "right"});
});
</script>
</body>
</html>Advertisements