Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- $(function() {
- $("#dialog-message1").dialog({
- modal: true,
- buttons: {
- Ok: function() {
- $(this).dialog("close");
- }
- }
- });
- });
- $("div#dialog-message1").bind("dialogclose", function(event) {
- alert("closed");
- });
- </script>
- <div id="dialog-message1" title="Incorrect password">The password you have provided is incorrect.
- <br>Please try again.</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement