I find myself asking this question over and over without finding the right answer so I decided to write it down here for you to share your knowledge.
I love to use localStorage API from new browsers to store little pieces of information related to my website behavior.
I know localStorage is rules by the same origin policy which stands that you can only have access to the localStorage bucket for your domain (including hostname, port and PROTOCOL). My problem is with the protocol...
In my case, we have http areas of our e-commerce site (catalog navigation) and https ones (checkout process). So I have this problem where I can't read any information in our checkout process which have been setted on the catalog navigation area.
I think this might be a common pattern and I don't understand why I'm not allowed to do it.
Maybe you know why this is so, if there is any way to hack this or another alternative (not including cookies).
Thanks!