Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <script>
  5. function del() {
  6. var ask = window.confirm("Are you sure you want to delete this post?");
  7. if (ask) {
  8. window.alert("This post was successfully deleted.");
  9.  
  10.  
  11.  
  12. // Sets the location of the topmost window of the current window.
  13. top.location = "http://www.example.com";
  14.  
  15.  
  16. }
  17. }
  18.  
  19. </script>
  20.  
  21. <body>
  22. <a href="" onclick="del()">delete</a>
  23. The content of the body element is displayed in your browser.
  24. </body>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement