How can I view HTML web storage in Chrome and Firefox?
How to view the HTML web storage in Chrome and Firefox
13.2k views Asked by MatBanik At
4
There are 4 answers
1
On
For Firefox use Firebug add-on. Open Firebug. Click on Console. On the command line type in:
localStorage
For development you can also edit local storage in Firebug using dot notation. For example:
localStorage.myVar = "hello"
localStorage.clear()
localStorage.removeItem("myVar")
In Firefox 19+ you can inspect localStorage directly from the console without Firebug:
inspect(localStorage)
This will pull up a panel displaying the key/value pairs
try the inspector in Chrome.