Mid JavaScript

How do you create modals using Bootstrap?

Modals are created using the .modal class and toggled with JS or data attributes.

<button data-bs-toggle="modal"

data-bs-target="#myModal">Open</button>

<div class="modal fade" id="myModal">

<div class="modal-dialog"><div

class="modal-content">...</div></div>

</div>

More from JavaScript Tutorial

All questions for this course