Basically i'm trying to remove few localstorage keys from my page. The script I'm using is:
box.emptyStorageFilter = (function() {
$('header nav li a').off().on('click', function(e) {
localStorage.removeItem('list_customers');
localStorage.removeItem('list_orders');
localStorage.removeItem('list_products');
localStorage.removeItem('filter_category');
});
}());
I have no idea what's wrong, since it's working on EVERY browser (including IE 8,9,10) but IE 11!
At the console I get this Error:
SCRIPT5: Access is denied.