Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title></title>
  6. </head>
  7. <body>
  8.     <button id="foo" onclick="action('http://stackoverflow.com/q/36933820/5526354')">Click 1</button>
  9.     <button id="foo" onclick="action('http://stackoverflow.com/a/36934160/5526354')">Click 2</button>
  10.     <button id="foo" onclick="action('http://stackoverflow.com')">Click 3</button>
  11.     <script type="text/javascript">
  12.         function action(arg){
  13.             window.location.replace(arg)
  14.         }
  15.     </script>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement