Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- clear(); //Use To Clear The Session Storage.
- this.onclick=function(){
- sessionStorage.clickcount++
- document.body.innerHTML = "You have clicked the webpage " + sessionStorage.clickcount + " times this session!!";
- }
- function clear(){
- sessionStorage.clickcount=0;
- }
- </script>
Advertisement
Add Comment
Please, Sign In to add comment