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

Live Demo

<!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>

Updated on: 15-Jun-2020

574 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements