shown.bs.popover Bootstrap event


The shown.bs.popover event fires when the popover is completely visible.

Firstly, display the popover on button click using the following code −

$(".btn-default").click(function(){
  $("[data-toggle='popover']").popover('show');
});

After that, fire the popover shown.bs.popover event and generate alert −

$("[data-toggle='popover']").on('shown.bs.popover', function(){
  alert('Popover is completely visible!');
});

You can try to run the following code to implement the show.bs.popover event −

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">
  <a href="#" data-toggle="popover" title="Employee ID" data-content="E001, E004, E008">Awards</a>
  <div>
    <p>Here's the list:</p>
    <button type="button" class="btn btn-default">List</button>
  </div>  
</div>

<script>
$(document).ready(function(){
  $(".btn-default").click(function(){
    $("[data-toggle='popover']").popover('show');
  });
  $("[data-toggle='popover']").on('shown.bs.popover', function(){
    alert('Popover is completely visible!');
  });
});
</script>

</body>
</html>


Updated on: 16-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements