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

Live Demo

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

Updated on: 18-Jun-2020

849 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements