Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html >
  3. <head>
  4. <meta charset="utf-8">
  5. <title>History</title>
  6. </head>
  7. <body>
  8. <a href="#newState"> New State</a>
  9. <h1 onClick="javascript:goBack()"> Go backward</h1>
  10. <h1 onClick="javascript:goForward()"> Go forward</h1>
  11. <script>
  12. function goBack() {
  13. window.history.go(-1);
  14. }
  15. function goForward() {
  16. window.history.go(1);
  17. }
  18.  
  19. </script>
  20.  
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement