javascript - How can we show Nifty window modal popup on page load? -
this question has answer here:
i want show nifty window modal popup on page load. nifty window popup modal code:
<div class="md-modal md-effect-1" id="modal-1"> <div class="md-content"> <h3>modal dialog</h3> <div> <p>this first nifty modal window. </p> <button class="md-close">close me!</button> </div> </div> </div>
thanks in advance.
i've looking in source code of demos, , believe trick:
$(function() { $('#modal-1').addclass('md-show'); });
Comments
Post a Comment