Client-side javascript cookies
Client-side javascript cookies is a term that refers to the ability to store data in the web browser through the use of cookies where javascript is used. The term client-side indicates that this Internet technology is used from the side of the user (i.e., the website visitor). To easily explain this term, it is good to split it up:
- Javascript is the most commonly used program code in browsers. All browsers support Javascript and using it does not require a plugin.
- Cookies are pieces of code or information that provide opportunities to store information locally (i.e., at the client-side). These pieces of code or information are added to a requested website. This "extra functionality" can be used to provide insight into information such as the contents of a shopping cart, last viewed items and information that has been requested.
- Thus, the term client-side javascript cookies refers to manipulating the form or content of a Web page within the visitor/user's browser. If there is a change in the script code before the web page is downloaded by the visitor/user, server-side cookies are used.