Trying to create a view in codeignitor for a log in page that permanently displays a Bootstrap Modal. I am able to get the modal pop up window by adding the button, but I do not know how to get the modal to display by default when the page loads.
I copied and pasted the following from the docs but nothing shows on the page, it only shows up in the source.
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->