deleteStorageItem
Removes from the storage on the specified address an element which is correspond to specified key and ID.
Syntax
deleteStorageItem = function(aStorageURL, aStorageKey, aItemID, aStoragePass);
Parameters
- aStorageURL
- functions: storage address
- aStorageKey
- functions: identification key
- aItemID
- functions: ID of the element to be removed
- aStoragePass
- functions: password to access the storage
Examples
//Remove from storage element with ID = 10 and with the key TestKey deleteStorageItem('http://mysite.ru/storage.php','TestKey',10);