How to use Bootstrap Alert Plugins


Alert messages are used to display information such as warning or confirmation messages to the end users. 

You can try to run the following code to implement alert plugins in Bootstrap −

Example

Live Demo 

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div id = "myAlert" class = "alert alert-success">
         <a href = "#" class = "close" data-dismiss = "alert">×</a>
         <strong>Success!</strong> the result is successful.
      </div>
      <script>
         $(function(){
            $("#myAlert").bind('closed.bs.alert', function () {
               alert("Alert message box is closed.");
            });
         });
      </script>
   </body>
</html>

Updated on: 12-Jun-2020

78 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements