vote up 8 vote down star
2

How do you safely encode a URL using Javascript such that it can be put into a GET string?

var myUrl = "http://example.com/index.html?param=1&anotherParam=2";
var myOtherUrl = "http://example.com/index.html?url=" + myUrl;

I assume that you need to encode the myUrl variable on that second line?

flag

68% accept rate

3 Answers

vote up 15 vote down check

Check out the built-in function encodeURIComponent(str) and encodeURI(str). In your case, this should work:

var myOtherUrl = "http://example.com/index.html?url=" + encodeURIComponent(myUrl);
link|flag
cheers! that's what I was after! – nickf Dec 2 '08 at 2:47
vote up 3 vote down

Try looking into encodeURI() and decodeURI().

link|flag
vote up 11 vote down

You have 3 options:

  • escape() will not encode: @*/+

  • encodeURI() will not encode: ~!@#$&*()=:/,;?+'

  • encodeURIComponent() will not encode: ~!*()'

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.

link|flag
1  
The character encoding used with escape is variable. Stick with encodeURI and encodeURIComponent, which use UTF-8. – sylvarking Dec 2 '08 at 4:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.