Skip to content

Instantly share code, notes, and snippets.

@mfyance
mfyance / modal.html
Created September 28, 2012 20:44 — forked from makeusabrew/modal.html
Twitter Bootstrap - basic dialog box invocation via JavaScript (2)
<!-- set up the modal to start hidden and fade in and out -->
<div id="myModal" class="modal hide fade">
<!-- dialog contents -->
<div class="modal-body">Hello world!</div>
<!-- dialog buttons -->
<div class="modal-footer"><a href="#" class="btn primary">OK</a></div>
</div>