encodeURI Method (Windows Scripting - JScript)

 

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

Syntax

encodeURI(URIString)

Remarks

The required URIString argument is a value representing an encoded URI.

The encodeURI method returns an encoded URI. If you pass the result to decodeURI, the original string is returned. The encodeURI method does not encode the following characters: ":", "/", ";", and "?". Use encodeURIComponent to encode these characters.

Applies To: Global Object (Windows Scripting - JScript)

Requirements

Version 5.5

See Also

decodeURI Method (Windows Scripting - JScript)
decodeURIComponent Method (Windows Scripting - JScript)