Answers

Question and Answer:

  Home  Expert JavaScript Developer

⟩ What is encodeURI() function?

► encodeURI() function is used to encode the URI.

► This function does not encode following special characters :

' = , ? : $ @ / & # + '

► Syntax : encodeURI(uri), Where uri is URI to be encoded.

► For example :

<script>

var uri = "EmpDetails.asp?Emp=årpit&mode=edit";

document.write(encodeURI(uri) + "

");

</script>

Output :

EmpDetails.asp?Emp=%C3%A5&mode=edit.

 157 views

More Questions for you: