without plugin!
Month: November 2020
Iframe inside bootstrap
Link to open bootstrap modal
$(document).ready(function () { $('.modal').each(function () { const modalId = `#${$(this).attr('id')}`; if (window.location.href.indexOf(modalId) !== -1) { $(modalId).modal('show'); } }); });