hide.bs.popover Bootstrap event


The hide.bs.popover event fires when the popover is about to be hidden.

Add a click button to hide the popver using the popver(“hide”) method −

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

After clicking the button, fire the popover event and generate an alert using the hide.bs.popver event in Bootstrap −

$("[data-toggle='popover']").on(hide.bs.popover', function(){
  alert('Popover is about to be hidden!');
});

You can try to run the following code to implement the hide.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-primary">List (Display)</button>
    <button type="button" class="btn btn-default">List (Hide)</button>
  </div>  
</div>

<script>
$(document).ready(function(){
  $(".btn-primary").click(function(){
    $("[data-toggle='popover']").popover('show');
  });
  $(".btn-default").click(function(){
    $("[data-toggle='popover']").popover('hide');
  });
  $("[data-toggle='popover']").on('hide.bs.popover', function(){
    alert('The popover is about to be hidden.');
  });
  $("[data-toggle='popover']").on('hidden.bs.popover', function(){
    alert('The popover is now hidden.');
  });
});
</script>

</body>
</html>

Updated on: 16-Jun-2020

108 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements