I opened IE11
developer tool it has lot of options , but i cant find how can I the clear localStorage
data. ?
is there something like this in IE11 ?
Will clear cache data does not clear localStorage
or sessionStorage
data ?
I opened IE11
developer tool it has lot of options , but i cant find how can I the clear localStorage
data. ?
is there something like this in IE11 ?
Will clear cache data does not clear localStorage
or sessionStorage
data ?
Try this:
Try to type this in the JavaScript console
I think this is the most straightforward way to do this. I don't see any option that explicitly affects localStorage and/or sessionStorage in developer tools (at least nothing that looks like the Resources view in Dev Tools in Chrome).
EDIT2 In Microsoft Edge, there is a way to see/clear
localStorage
,sessionStorage
andcookies
through the GUI.localStorage
tab (click the folder icon orCtrl+O
, selectlocalStorage
)Ctrl-A
+Del
)Try
localStorage.clear()
andsessionStorage.clear()
in Console panel of IE Developer toolbar. It returns an"undefined"
but seems to clear local storage and session storage.For more : How to clear localstorage, sessionStorage and cookies in javascript?