Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES

GLM.DOM.Cookie.getValue( name )

GLM.DOM.Cookie.getValue( name )

Method for returning the cookie value by name.

Parameters:

name - The name of the cookie value to retrieve.

Returns:

The value associated with the name.

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 | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES