Skip past navigation linksSecure Global Desktop 4.31 Administration Guide > Applets > removeValue (framework applet)

removeValue (framework applet)

Syntax

Skip past command syntax or program codestring removeValue(String key)

Description

The removeValue method removes general information matching the key string. removeValue returns the value specified by key.

Examples

Skip past command syntax or program code<SCRIPT Language="JavaScript">
function removevalue(key)
{
   value = document.applets[0].removeValue(key);
   alert("Key " + key + " has been removed.");
}
</SCRIPT>

Defines a function that removes a key and value stored with the framework applet.

Note that the framework applet must be present in the same web page as the removevalue method.

Related topics