How to encode a URL in Javascript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T09:48:12Zhttp://stackoverflow.com/feeds/question/332872http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/332872/how-to-encode-a-url-in-javascript8How to encode a URL in Javascript?nickf2008-12-02T02:37:08Z2008-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&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#3328763Answer by Zack Mulgrew for How to encode a URL in Javascript?Zack Mulgrew2008-12-02T02:39:29Z2008-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#33288815Answer by Buu Nguyen for How to encode a URL in Javascript?Buu Nguyen2008-12-02T02:43:57Z2008-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#33289711Answer by CMS for How to encode a URL in Javascript?CMS2008-12-02T02:49:54Z2008-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: ~!@#$&*()=:/,;?+'</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>