Bring Bootstrap's components to life—now with 12 custom jQuery plugins.
Toggle a modal via javascript by clicking the button below. It will slide down and fade in from the top of the page.
+Toggle a modal via JavaScript by clicking the button below. It will slide down and fade in from the top of the page.
Activate a modal without writing javascript. Set data-toggle="modal" on a controller element, like a button, along with a data-target="#foo" or href="#foo" to target a specific modal to toggle.
Activate a modal without writing JavaScript. Set data-toggle="modal" on a controller element, like a button, along with a data-target="#foo" or href="#foo" to target a specific modal to toggle.
<button type="button" data-toggle="modal" data-target="#myModal">Launch modal</button>-
Call a modal with id myModal with a single line of javascript:
Call a modal with id myModal with a single line of JavaScript:
$('#myModal').modal(options)
Options can be passed via data attributes or javascript. For data attributes, append the option name to data-, as in data-backdrop="".
Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-backdrop="".