JSFiddle - React, Tailwind, and code Playground

by shapeshifta

HTML

<p>   You have viewed this page   <span id="count">an untold number of</span>   time(s). </p> <input id="button1" type="button" value="test" />

JavaScript

var storage = window.localStorage;  
if (!storage.pageLoadCount){ 
    storage.pageLoadCount = 0;
}
storage.pageLoadCount = ~~storage.pageLoadCount + 1;  

document.getElementById('count').innerHTML = storage.pageLoadCount;      
document.getElementById('button1').click = function testevent(){ 
    localStorage.clear();
    document.getElementById('count').innerHTML = storage.pageLoadCount;
    alert('ff'); 
    return false;
};