DOM:window.unescape
From MDC
(Difference between revisions)
| Revision as of 21:12, 7 July 2006 Jabez (Talk | contribs) Syntax � Previous diff |
Revision as of 21:17, 7 July 2006 Jabez (Talk | contribs) Syntax Next diff → |
||
| Line 4: | Line 4: | ||
| Unencodes a value that has been encoded in hexadecimal (e.g., a cookie). | Unencodes a value that has been encoded in hexadecimal (e.g., a cookie). | ||
| ==Syntax == | ==Syntax == | ||
| - | window.unescape(''sValue'') | + | ''sRegular'' = window.unescape(''sEscaped'') |
| ==Parameters == | ==Parameters == | ||
Revision as of 21:17, 7 July 2006
« Gecko DOM Reference
Contents |
Summary
Unencodes a value that has been encoded in hexadecimal (e.g., a cookie).
Syntax
sRegular = window.unescape(sEscaped)
Parameters
sValueis an encoded string.
Example
cookieValuePlain = window.unescape( cookieValue );
Notes
See also window.escape.
Specification
DOM Level 0. Not part of specification.
Categories: Gecko DOM Reference