I am attempting to utilize bootstrap growl to create an alert popup, however, even after using the code from the growl demo here, I have been unable to trigger the popup.
Code:
<html lang="en">
<head>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"/>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"</script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/bootstrap-growl/1.0.6/bootstrap-growl.min.js"></script>
</head>
<body>
<div class="container text-center">
<button class="success btn btn-success">Success</button>
</div>
<script>
$(".success").click(function(){
$.bootstrapGrowl('You clicked this alert.',{
type: 'success',
delay: 2000,
});
});
</script>
</body>
</html>
The code is exactly the same in the demonstration, however, it is not producing a popup. Can anyone suggest another solution or a modification of the code above?