Best practice: escape, or encodeURI / encodeURIComponent - Stack Overflow most recent 30 from stackoverflow.com 2010-03-11T14:01:48Z http://stackoverflow.com/feeds/question/75980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent 14 Best practice: escape, or encodeURI / encodeURIComponent Adam http://stackoverflow.com/users/1341 2008-09-16T19:24:34Z 2009-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("% +&amp;="); </code></pre> <p>OR</p> <p>use encodeURI() / encodeURIComponent()</p> <pre><code>encodeURI("http://www.google.com?var1=value1&amp;var2=value2"); encodeURIComponent("var1=value1&amp;var2=value2"); </code></pre> http://stackoverflow.com/questions/75980/best-practice-escape-or-encodeuri-encodeuricomponent/75989#75989 9 Answer by Daniel Papasian for Best practice: escape, or encodeURI / encodeURIComponent Daniel Papasian http://stackoverflow.com/users/7548 2008-09-16T19:26:22Z 2008-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#76119 2 Answer by Pseudo Masochist for Best practice: escape, or encodeURI / encodeURIComponent Pseudo Masochist http://stackoverflow.com/users/8529 2008-09-16T19:40:32Z 2008-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#884613 5 Answer by livejwl for Best practice: escape, or encodeURI / encodeURIComponent livejwl http://stackoverflow.com/users/0 2009-05-19T19:31:58Z 2009-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#1017124 4 Answer by sundeepkamath for Best practice: escape, or encodeURI / encodeURIComponent sundeepkamath http://stackoverflow.com/users/77286 2009-06-19T09:33:31Z 2009-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>