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

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -