Best practice: escape, or encodeURI / encodeURIComponent - Stack Overflow most recent 30 from stackoverflow.com2010-03-11T14:01:48Zhttp://stackoverflow.com/feeds/question/75980http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent14Best practice: escape, or encodeURI / encodeURIComponentAdamhttp://stackoverflow.com/users/13412008-09-16T19:24:34Z2009-06-19T09:33:31Z
<p>When encoding a query string to be sent to a web server - what is the best practice to use from javascript:</p>
<p>Use escape:</p>
<pre><code>escape("% +&=");
</code></pre>
<p>OR</p>
<p>use encodeURI() / encodeURIComponent()</p>
<pre><code>encodeURI("http://www.google.com?var1=value1&var2=value2");
encodeURIComponent("var1=value1&var2=value2");
</code></pre>
http://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent/75989#759899Answer by Daniel Papasian for Best practice: escape, or encodeURI / encodeURIComponentDaniel Papasianhttp://stackoverflow.com/users/75482008-09-16T19:26:22Z2008-09-16T19:26:22Z<p>encodeURI() - the escape() function is for javascript escaping, not HTTP.</p>
http://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent/76119#761192Answer by Pseudo Masochist for Best practice: escape, or encodeURI / encodeURIComponentPseudo Masochisthttp://stackoverflow.com/users/85292008-09-16T19:40:32Z2008-09-16T19:40:32Z<p>Also remember that they all encode different sets of characters, and select the one you need appropriately. encodeURI() encodes fewer characters than encodeURIComponent(), which encodes fewer (and also different, to dannyp's point) characters than escape().</p>
http://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent/884613#8846135Answer by livejwl for Best practice: escape, or encodeURI / encodeURIComponentlivejwlhttp://stackoverflow.com/users/02009-05-19T19:31:58Z2009-05-19T19:31:58Z<p>As Danny Goodman points out in Javascript, The Definitive Guide, escape() was ECMAScript v1 and deprecated in ECMAScript v3. General advice seems to be to avoid using it.</p>
http://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent/1017124#10171244Answer by sundeepkamath for Best practice: escape, or encodeURI / encodeURIComponentsundeepkamathhttp://stackoverflow.com/users/772862009-06-19T09:33:31Z2009-06-19T09:33:31Z<p>This has been explained quite well at the foll link:</p>
<p><a href="http://xkr.us/articles/javascript/encode-compare/" rel="nofollow">http://xkr.us/articles/javascript/encode-compare/</a></p>