Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Last active December 10, 2015 13:49
Show Gist options
  • Save philsinatra/4443360 to your computer and use it in GitHub Desktop.
Save philsinatra/4443360 to your computer and use it in GitHub Desktop.
Bootstrap modal html markup
<div class="modal hide" id="<#id#>" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">
<#modal-title#>
</h3>
</div>
<div class="modal-body">
<#modal-body#>
</div>
<div class="modal-footer">
<button class="btn" onclick="page1_go_back()" data-dismiss="modal" aria-hidden="true"> Close </button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment