Package: | Ext.util |
Defined In: | Cookies.js |
Class: | Cookies |
Extends: | Object |
Method | Defined By | |
---|---|---|
clear( Object name )
:
voidRemoves a cookie with the provided name from the browser
if found. Removes a cookie with the provided name from the browser
if found. Parameters:
| Cookies | |
get( Object name )
:
MixedRetrieves cookies that are accessible by the current page. If a cookie
does not exist, get() returns null. The foll... Retrieves cookies that are accessible by the current page. If a cookie
does not exist, get() returns null. The following
example retrieves the cookie called "valid" and stores the String value
in the variable validStatus.
Parameters:
| Cookies | |
set( Object name , Object value , [Object expires ], [String path ], [String domain ], [Boolean secure ] )
:
voidCreate a cookie with the specified name and value. Additional settings
for the cookie may be optionally specified (f... Create a cookie with the specified name and value. Additional settings
for the cookie may be optionally specified (for example: expiration,
access restriction, SSL). Parameters:
| Cookies |