I need people as soon as the page load the modal bootstrap open on the screen without having to click the button, the way I am doing it and it is necessary to click the button for the modal open, follow the code:
<button type="button" class="btn btn-primary construcao" data-toggle="modal" data-target="#exemplomodal">SITE EM CONSTRUÇÃO</button>
<div class="modal fade" id="exemplomodal" tabindex="-1" role="dialog" aria-
labelledby="myLargeModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="gridSystemModalLabel">teste</h4>
</div>
<div class="modal-body">
teste
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$('#exemplomodal').modal('show');
})
</script>