Описание тега bootstrap-dialog

Bootstrap3 Dialog is a wrapper for bootstrap 3.x modals.

Bootstrap3 Dialog is a wrapper for bootstrap 3.x modals.

See project homepage and manual and examples.

Bootstrap3 Dialog makes it more easy to create modals on the fly. Example:

BootstrapDialog.show({
    title: 'Say-hello dialog',
    message: 'Hi Apple!'
});

...Replaces markup like this:

<button class="btn btn-primary" data-toggle="modal" data-target=".bs-example">example</button>

<div class="modal fade bs-example" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
  <div class="modal-dialog modal-sm">
    <div class="modal-header">
      Say-hello dialog
    </div>
    <div class="modal-content">
      Hi Apple!
    </div>
  </div>
</div>