How to encode a URL in Javascript? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T09:48:12Z http://stackoverflow.com/feeds/question/332872 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/332872/how-to-encode-a-url-in-javascript 8 How to encode a URL in Javascript? nickf 2008-12-02T02:37:08Z 2008-12-02T02:49:54Z <p>How do you safely encode a URL using Javascript such that it can be put into a GET string?</p> <pre><code>var myUrl = "http://example.com/index.html?param=1&amp;anotherParam=2"; var myOtherUrl = "http://example.com/index.html?url=" + myUrl; </code></pre> <p>I assume that you need to encode the <code>myUrl</code> variable on that second line?</p> http://stackoverflow.com/questions/332872/how-to-encode-a-url-in-javascript/332876#332876 3 Answer by Zack Mulgrew for How to encode a URL in Javascript? Zack Mulgrew 2008-12-02T02:39:29Z 2008-12-02T02:39:29Z <p>Try looking into <a href="http://www.w3schools.com/jsref/jsref_encodeURI.asp" rel="nofollow">encodeURI()</a> and <a href="http://www.w3schools.com/jsref/jsref_decodeURI.asp" rel="nofollow">decodeURI()</a>.</p> http://stackoverflow.com/questions/332872/how-to-encode-a-url-in-javascript/332888#332888 15 Answer by Buu Nguyen for How to encode a URL in Javascript? Buu Nguyen 2008-12-02T02:43:57Z 2008-12-02T02:43:57Z <p>Check out the built-in function encodeURIComponent(str) and encodeURI(str). In your case, this should work:</p> <pre><code>var myOtherUrl = "http://example.com/index.html?url=" + encodeURIComponent(myUrl); </code></pre> http://stackoverflow.com/questions/332872/how-to-encode-a-url-in-javascript/332897#332897 11 Answer by CMS for How to encode a URL in Javascript? CMS 2008-12-02T02:49:54Z 2008-12-02T02:49:54Z <p>You have 3 options:</p> <ul> <li><p>escape() will not encode: @*/+</p></li> <li><p>encodeURI() will not encode: ~!@#$&amp;*()=:/,;?+'</p></li> <li><p>encodeURIComponent() will not encode: ~!*()'</p></li> </ul> <p>But in your case, if you want to pass a url into a GET parameter of other page, you should use escape or encodeURIComponent, but not encodeURI.</p>