Created
November 7, 2013 14:37
-
-
Save mikedugan/7355584 to your computer and use it in GitHub Desktop.
loads a modal dialog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function modal() { var html = "./path/to/modalFile.html"; var div= $('a#modal'); //the empty container div in your doc for the modal dialog feedback.click(function() { $('#modDisplay').dialog({position: {my: 'right top', at:'center center', of: window}}).load(html); return false; //prevent the page from navigating }); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment