SOW : Ajax Modals
SOW plugins are part of Smarty Core, written from scratch!
src/js/sow.core/sow.ajax_modal.js
Overview:
- load modal content via ajax
- callback support
- lightweight, 3Kb minified (1.6Kb gzipped)
Ajax modal Basic
Ajax modal Video
Ajax modal inline structure
Ajax modal open on load
Open a modal on page load - place this code anywhere, usually at the bottom of a page, inside <head>
html tag.
<!--
delay to show the modal
data-ajax-modal-delay="3000" (3000 = 3s)
do not close modal on backdrop click
data-ajax-modal-backdrop="static"
-->
<div class="hide js-onload js-ajax-modal"
data-href="_ajax/modal_signin.html"
data-ajax-modal-delay="3000"
data-ajax-modal-size="modal-md"
data-ajax-modal-centered="false"
data-ajax-modal-backdrop="static"></div>