vote up 2 vote down star

I don't have a use case for this but I was recently asked this very question and w3schools helpfully tells you the characters are ignored but not why.

Anyone have any idea why this might be the case?

Thanks, David

flag

2 Answers

vote up 3 vote down check

From your source: "The escape() function encodes a string, so it can be read on all computers." Those characters are standard in the ASCII set, so there's no point in encoding them for this particular purpose.

link|flag
1  
This misses the point - the aim is to be able to safely transmit a string inside a Uri, which itself uses particular characters for reserved purposes. – Eamon Nerbonne Aug 12 at 8:38
vote up 7 vote down

The escape function is deprecated. Use encodeURI and encodeURIComponent instead.

link|flag
The funy thing is that encodeURIComponent that was only implemented by Mozilla in Javascript 1.5 was implemented by IE all the way back to IE 5.5. – Paulo Santos Jun 3 at 14:52

Your Answer

Get an OpenID
or

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