Kris Wood
07/03/2020, 8:51 PMjen
07/03/2020, 9:33 PMjen
07/03/2020, 9:33 PM// Show the page blocker. When finished showing, run the code inside here...
jQuery('#pagebusy').show({complete: function() {
// do my work here...
// At the end, redirect to my page...
window.location = myurl;
}});jen
07/03/2020, 9:36 PMjen
07/03/2020, 9:36 PM<div id="pagebusy" style="display: none;">
<div id="pagebusy_veil" style="position: fixed; z-index: 10000; top: 0px; left: 0px; height: 100%; width: 100%; margin: 5px 0px; background-color: rgb(204, 204, 204); opacity: 0.6;"></div>
<div id="pagebusy_message_holder" style="background: #FFFFFF; border: 1px solid #000000; position: fixed; z-index: 10001; top: 40%; left: 40%; padding: 20px; width: 400px;">
<span id="pagebusy_message">Here is my message that shows while it's doing the work</span>
<br/><br/><center><img src="link_to_spinner_image" width="60px"/></center>
</div>
</div>jen
07/03/2020, 9:36 PMpagebusy_message with whatever message I want to show while the modal is covering the page.Kris Wood
07/03/2020, 9:50 PM