3
I was developing a plugin for jQuery and needed to store some information.
I thought I’d use the localStorage
of HTML5
, but I was warned by a friend that in some older versions of browsers would not work, and that I should use Cookies
I took a look at W3school to check this, and there says the following:
Note: Internet Explorer 7 and earlier versions, do not support Web Storage.
That is to say:
Internet Explorer 7 and earlier versions do not support Storage.
I must really worry about still developing for the
Internet Explorer 7
or earlier versions?I can use the secure Torage localthat I won’t have any problems with compatibility with browsers launched in the mid
Internet Explorer 9
, or should I still wear the good oldCookie
?
Usually, in the systems I develop, I worry about the
IE 10
up– Wallace Maxters