Skip to content

Instantly share code, notes, and snippets.

@tmbritton
Created January 21, 2013 20:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tmbritton/4589320 to your computer and use it in GitHub Desktop.
Save tmbritton/4589320 to your computer and use it in GitHub Desktop.
Javascript url decode
/**
* Decodes url encoded strings
*
* @param: string - url or email address we want to decode
*/
function urldecode(url) {
return decodeURIComponent(url.replace(/\+/g, ' '));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment