I have a simple HTML5 App that I am currently working on and I\'m wondering if it\'s possible to remove a item in HTML5 Local Storage after a period of time, like: after 24 hour
window.setInterval(function () { localStorage.setItem('nicwincount', 0); },8640000); //24 * 60mins * 60sec
ps: nicwincount is a localstorage you set before. localStorage.setItem('feeds', Ext.encode(feeds));
hope can help you.