Modal Page Load

Links with the class "btn-modal" will automatically trigger a modal window to appear when clicked. The following data properties define the modal content:

data-modal-href The local URL to open
data-modal-title Title to appear in the modal (optional)
data-modal-class Modal class like modal-lg, modal-sm, etc. (optional)

<button id="btnWhatever"
	class="btn btn-sm btn-outline-info btn-modal"
	data-modal-href="/test"
	data-modal-title="Test"
	data-modal-class="modal-lg">
	Modal
</button>


Example:





Top