I was developing a plugin for jQuery and needed to store some information.
I thought about using localStorage
of HTML5
, however I was alerted by a friend that in some old versions of browsers it would not work, and that I should use Cookies
I took a look at the W3School to check this out, and it says the following:
Note: Internet Explorer 7 and earlier versions, do not support Web Storage.
That is:
Internet Explorer 7 and earlier versions do not support Storage.
Should I really still care about developing for Internet
Explorer 7
or earlier versions?
I can use localStorage securely that I will not have any problems with
compatibility with browsers launched in the middle of Internet
Explorer 9
, or should I still use the good old Cookie
?