| Overview | Index | GodLikeMouse JavaScript Framework |
| FRAMES | NO FRAMES |
GLM.DOM.Cookie
Class for handling browser cookies.
Returns:
A new GLM.DOM.Cookie object.
Example:
var cookie = new GLM.DOM.Cookie("mycookie");
cookie.setValue("firstvalue","hello world"); //set firstvalue name to "hello world"
var firstvalue = cookie.getValue("firstvalue"); //retrieve firstvalue.
cookie.removeCookie(); //remove the cookie from the client machine.
| Overview | Index | GodLikeMouse JavaScript Framework |
| FRAMES | NO FRAMES |