sessionStorage in Firefox

5.6k views Asked by At

in firefox 9, when i do:

var msg = sessionStorage.getItem("message");

The browser ask with the error: "Operation is not supported", firefox not implement the webStorage of html5? or this case is only for sessionStorage and not for localStorage?. Thx.

1

There are 1 answers

0
Fenton On BEST ANSWER

Session storage is only available when you are serving your page from a server - you'll find that it doesn't work if you open the HTML page locally because there is no session.

In the case of browsers that may not support session storage, you can test for the feature:

if (window.sessionStorage) {
    ...