Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.   <head>
  3.     <title>Parenscript tutorial: Increment a session value</title>
  4.     <script type='text/javascript'>
  5.       function greetingCallback() {
  6.         alert('The value was 15 and now it\'s 16');
  7.         return location.reload(true);
  8.       };
  9.     </script>
  10.   </head>
  11.   <body>
  12.     <h2>Parenscript tutorial: Increment a session value</h2>
  13.     <a href='#' onclick='greetingCallback();'>Click here to increment the value</a>
  14.   </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement