jquery - modal popup code placement -
is possible separate actual popup message page called from? examples have found contain call popup.js file , div containing message on same page.
i'd able maintain separate page message, having trouble implementing.
thank you.
you can use ajax load content modal. use callback trigger showing of modal after content loaded.
$('#modal-content').load('path/to/content.html', function() { $('#modal').show(); }
where modal-content
div wish place content in, , modal
modal wrap wish show.
Comments
Post a Comment