|
|
|
|
|
- Overview
- WLanguage functions
In a Web site, the local storage is used to store and retrieve values in browser code. These values can be: - shared by all windows and tabs of the same computer browser: they can be restored once the browser is closed then re-opened or in another browser window. In this case, the local storage is persistent.
- specific to a window or to a tab of the browser: in this case, the values will be lost when closing the browser window. On the contrary, these values can be read by the browser windows opened from the window where the values have been stored. In this case, the local storage is not persistent.
Remarks: - The storage of local parameters is not available by page.
- The storage of local parameters is available for the recent browsers only (supporting the HTML 5 standard).
- Even for the persistent local storage, the storage is not shared by the different browsers (a value stored in Internet Explorer cannot be retrieved by Firefox).
The following functions are used to perform a local storage:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|