I have been writing a php script that saves a long string within cookie (more than 4000 chars long) and I want to save it within the browser cache. The problem is that almost all browsers have a limit. What should I do? I’m using jQuery for adding and reading data from cookie and php.
Share
Check out Web Storage Portability Layer: A Common API for Web Storage
It abstracts the various local storage mechanisms that browsers provide.
Local storage is becoming standardized in HTML5.