Storing Data on the Client
Storing
information on the shopper
HTML5
offers 2 new objects for storing information on the client:
localStorage - stores information with no
limit
sessionStorage - stores information for one
session
Earlier,
this was done with cookies. Cookies aren't appropriate for giant amounts of
information, as a result of they're passed on by each request to the server,
creating it terribly slow and in-effective.
In
HTML5, the information isn't passed on by each server request,...