0 out of 2 rated this helpful - Rate this topic

getItem method

Retrieves the current value associated with the Web Storage key.

Web Storage, Section 4.1Internet Explorer 8

Syntax

var retval = Storage.getItem(bstrKey);

Standards information

Parameters

bstrKey [in]

Type: String

The name of the key (a valid UTF-16 string, including the empty string).

Return value

Type: VariantReturns the value associated with the key specified in bstrKey.

Remarks

Any valid UTF-16 string, including the empty string, is a valid key name.

If the specified bstrKey does not exist in the list associated with the object, then this method returns null.

Attempts to read or write a secured item from script running in the context of an unsecured URL are not permitted.

See also

Storage
setItem

 

 

Build date: 11/9/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.