encodeURI() global functionS2C Home « Globals « encodeURI()

Global function URI encoding.

Description

Encodes the special characters of a passed uri except the following:


 ; , / ? : @ & = + $ #
  

Syntax

Signature Description
encodeURI(uri)Decodes any special characters of an encoded uri including components.

Parameters

Parameter Description
uriThe uri to encode.

Below is an example of using the encodeURI() function.


// Encode a uri 
var uri="a spurious name.com?firstname=barney&surname=magrew";
alert(encodeURI(uri));  

Press the button below to action the above code:


Related Tutorials

JavaScript Advanced Tutorials - Lesson 9 - Any Other Business

go to home page Homepage go to top of page Top