Bootstrap Tutorial - Handle Alerts Events








The following code shows how to handle Alerts Events.

Example

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript"
  src="http://code.jquery.com/jquery.min.js"></script>
<script
  src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!--   w w w  . j ava 2s . c  om-->
  $("#myAlert").bind('closed.bs.alert', function(){
        console.log("Alert message box has been closed.");
    });
});  
</script>
<style type="text/css">
.bs-example {
  margin: 20px;
}
</style>
</head>
<body>
  <div class="bs-example">
    <div id="myAlert" class="alert alert-info">
      <a href="#" class="close" data-dismiss="alert">&times;</a> <strong>Note!</strong>
      Please read the comments carefully.
    </div>
  </div>
</body>
</html>

Click to view the demo