| TOTAL: 2 Page: 1 of 1 |
|
Determining cookie support in client's browser
If your script relies on JavaScript cookies to persist and store information for retrieval later, it's good practice to always make sure that the user's browser supports cookies first. This includes whether the browser has cookies enabled (an option in most browsers). Depending on your situation you can then either remind the user to enable cookies, or create code to handle these cases silently.

| Hits: | 50 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-19 |
Cookies
Cookies are the name given to the small text files your browser stores on your computer, which contain information relevant to the sites you have visited in the past. Using JavaScript you can write to these text files and then extract data from them whenever your reader returns to your site.

| Hits: | 98 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-19 |