eric-martin-modal

jQuery simple multiple modals on one html page

无人久伴 提交于 2019-12-18 09:31:24
问题 I tried the simple modal of Eric martin modal plugin. And I got a little difficulty. I did one modal on Html page but what if I want some more modals in one HTML page like I did the first one-just with different background and content? HTML: <div id='content'> <div id='basic-modal'> <a href='#' class='basic'>white whine</a> <div id="basic-modal-content"> <p> text text text</p> </div> </div> </div> jQuery: jQuery(function ($) { // Load dialog on page load //$('#basic-modal-content').modal(); /

jQuery simple multiple modals on one html page

江枫思渺然 提交于 2019-11-29 16:43:34
I tried the simple modal of Eric martin modal plugin. And I got a little difficulty. I did one modal on Html page but what if I want some more modals in one HTML page like I did the first one-just with different background and content? HTML: <div id='content'> <div id='basic-modal'> <a href='#' class='basic'>white whine</a> <div id="basic-modal-content"> <p> text text text</p> </div> </div> </div> jQuery: jQuery(function ($) { // Load dialog on page load //$('#basic-modal-content').modal(); // Load dialog on click $('#basic-modal .basic').click(function (e) { $('#basic-modal-content').modal();