Reputation: 34170
As I have read many places the cookie size limit is 4KB. this won't suite me. now I want to create multiple cookies. I wanted to know if the 4KB limit applies for each of them and for example I can make 4 cookies each 4KB or it applies for all of them.
Upvotes: 0
Views: 69
Reputation: 180858
Use LocalStorage. You can reliably store and retrieve about 2.5 megabytes of information per domain, across all browsers supporting HTML5.
Upvotes: 1