Created
September 5, 2011 21:00
-
-
Save nikku/1195907 to your computer and use it in GitHub Desktop.
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
| <p> | |
| <a href="#" id="show-server-notice-link">Show me some server content!</a> | |
| </p> | |
| <script type="text/javascript"> | |
| $(function() { | |
| $("#show-server-notice-link").click(function(event) { | |
| $('<div/>').dialog2({ | |
| title: "Server notice", | |
| content: "./notice.html", | |
| id: "server-notice" | |
| }); | |
| event.preventDefault(); | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment