Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews Scripting language Interviews:AngularJSAngularJS DeveloperChrome FrameDojoExpert Developer JavaScriptExpert JavaScript DeveloperExt CoreEXT-GWTExt-JSFront End Developer (AngularJS)JQuery DeveloperjQuery MobileJQuery ProgrammerJQuery UIMooToolsPrototype FrameworkQooxdooScriptingSencha TouchSizzle Selector EngineSWFObjectWeb Font LoaderXMLHttpRequest
Copyright © 2018. All Rights Reserved
Expert Developer JavaScript Interview Question:
What is encodeURI() function?
Submitted by: AdministratorAd
► 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.
Submitted by:
► 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.
Submitted by:
Copyright 2007-2025 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.

https://InterviewQuestionsAnswers.ORG.
