2 out of 3 rated this helpful Rate this topic

encodeURIComponent Function (JavaScript)

Windows Scripting 5.8

Encodes a text string as a valid component of a Uniform Resource Identifier (URI).

encodeURIComponent(encodedURIString)

The required encodedURIString argument is a value representing an encoded URI component.

The encodeURIComponent function returns an encoded URI. If you pass the result to decodeURIComponent, the original string is returned. Because the encodeURIComponent function encodes all characters, be careful if the string represents a path such as /folder1/folder2/default.html. The slash characters will be encoded and will not be valid if sent as a request to a web server. Use the encodeURI function if the string contains more than a single URI component.

Applies To: Global Object (JavaScript)

Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards. See Version Information.

Did you find this helpful?
(2000 characters remaining)