Showing posts with label HTML5. Show all posts
Showing posts with label HTML5. Show all posts
Short overview where Google Chrome browser stores the Web SQL databases:
Mac OS X (In case you cannot see the Library folder in Mac Finder > make it visible)
~/Library/Application Support/Google/Chrome/Default/databasesLinux
~/.config/google-chrome/Default/databasesWindows Vista/7
\Users\_username_\AppData\Local\Google\Chrome\User Data\Default\databasesWindows XP
\Documents and Settings\_username_\Local Settings\Application Data\Google\Chrome\User Data\Default\databasesYou can use free tools like Lita to access your Web SQL databases.
There are many ways to clear the localStorage of your web browser.
In a common dev toolbar just type:
localStorage.clear();If you are using jQuery:
$.storage('clear');If you are using Sencha:
// proxy var store = Ext.getStore('YourStore'); store.getProxy().clear(); store.data.clear(); store.sync(); // no proxy var store = Ext.getStore('YourStore'); store.removeAll(); store.sync();You can also delete the localStorage via a bookmark. Just add the following snippet as new bookmark:
javascript:(function(){localStorage.clear()})();
Wednesday, March 06, 2013