August 2010
Intermediate to advanced
304 pages
6h 44m
English
In this chapter, we will explore what you can do with HTML5 Web Storage—sometimes referred to as DOMStorage—an API that makes it easy to persist data across web requests. Before the Web Storage API, remote web servers needed to store any data that persisted by sending it back and forth from client to server. With the advent of the Web Storage API, developers can now store data directly on the client side in the browserfor repeated access across requests or to be retrieved long after you completely close the browser, thus reducing network traffic.
In this chapter, we'll first look at how Web Storage differs from cookies and then explore how you can store and retrieve data. Next, we will look at the differences ...