Bootstrap .popover("destroy") method


Use the popver(“detroy”) to destroy the popover.

It hides the popover −

popover('destroy');

The method is used to destroy the popover −

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

You can try to run the following code to implement the popver(“destroy”) 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">
    <a href="#" data-toggle="popover" title="Selected Students" data-content="Amit, Raman, Aman">Examination</a>
    <div>
      <p>Here's the result:</p>
      <button type="button" class="btn btn-default">Result</button>
      <button type="button" class="btn btn-danger">Refresh</button>
    </div>  
  </div>

<script>
  $(document).ready(function(){
   $(".btn-default").click(function(){
     $("[data-toggle='popover']").popover('toggle');
   });
   $(".btn-danger").click(function(){
     $("[data-toggle='popover']").popover('destroy');
   });
  });
</script>

</body>
</html>

Updated on: 17-Jun-2020

975 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements