Login required to edit - Edit - MDC, XTech 2006 Presentations - MDC, nsAString - MDC, Login required to edit - Edit - MDC, Category:HTML:Canvas - MDC, The Business Benefits of Web Standards - MDC, DOM:window.escape - History - MDC, Login required to edit - Edit - MDC, DOM:window.setTimeout - MDC, SpiderMonkey - MDC

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

  • sValue is an encoded string.

Example

cookieValuePlain = window.unescape( cookieValue );

Notes

See also window.escape.

Specification

DOM Level 0. Not part of specification.

Retrieved from "http://developer.mozilla.org/en/docs/DOM:window.unescape"