Is there a javascript function that takes a string and converts it into another string that is percent-encoded? That way something like "This Guy" turns into "This%20Guy".
Thanks
|
Is there a javascript function that takes a string and converts it into another string that is percent-encoded? That way something like "This Guy" turns into "This%20Guy". Thanks
| |||
|
feedback
|
|
encodeURI, encodeURIComponent or escape will work the same way for your string, but they differ in details. encodeURI is just for escaping URLs if you need to send a string as part of request, use encodeURIComponent | |||
|
feedback
|