Advertisement
Guest User

Untitled

a guest
Feb 11th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script>
  2. $(function() {
  3. $("#dialog-message1").dialog({
  4. modal: true,
  5. buttons: {
  6. Ok: function() {
  7. $(this).dialog("close");
  8. }
  9. }
  10. });
  11. });
  12. $("div#dialog-message1").bind("dialogclose", function(event) {
  13. alert("closed");
  14. });
  15. </script>
  16.  
  17. <div id="dialog-message1" title="Incorrect password">The password you have provided is incorrect.
  18. <br>Please try again.</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement