Need to clear localstorage item when close browser (Chrome, Firefox, IE, Safari...).
I tried this following code, but it works only on the page refreshing time not at browser closing.
Type 1:
$(window).unload(function(){
localStorage.removeItem(key);
});
Type 2:
window.onbeforeunload = function (e) {
message = "Are you sure you want leave?";
e.returnValue = message;
return message;
};
But both are working on page refreshing action only.