A conditional wrapper exposed based on browser support. This is not the preferred provider and is included to support IE 6 and 7.
This class participates in the engine library.
Empties the storage of all saved key/value pairs.
void clear( )
Returns the stored value corresponding to the specified key.
v = getItem( n )
v as String: Stored value.
Returns the number of keys currently stored.
l = getLength( )
l as int: Number of keys.
Returns the key at the specified index.
s = key( i )
s as String: The key name.
Removes the specified item from storage.
void removeItem( n )
Stores the supplied value at the specified key.
b = setItem( n, v )
b as bit: Bit indicating whether the value was stored.