<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<h2>Alert Message</h2>
<p>
<button class="btn btn-primary js-jumbo" id="btnFly">Try It</button>
</p>
<div id="message1" class="jumbotron flyover flyover-centered">
<h1>Hey!</h1>
<p>
This is the text to show in the message.
</p>
<button class="btn btn-primary">Dismiss</button>
</div>
<hr>
</div>
</div>
$(function()
{
// this is the jQuery function if testButton is clicked
$('#btnFly, #btnFly1, .jumbotron').click(function()
{
$('#message1').toggleClass('in');
});
});