Guest User

Untitled

a guest
Jun 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // In page startup functions
  2. $(document).ready(function() {
  3. // Initialise Modal
  4. $('#dialog').jqm({ modal: true });
  5. // Show Modal box
  6. $('#dialog').jqmShow();
  7. // Call all the startup functions and then hide the modal box
  8. // once they have all completed.
  9. StartUpCall((function() { $('#dialog').jqmHide(); })())
  10. });
Add Comment
Please, Sign In to add comment