Skip to content

Instantly share code, notes, and snippets.

@artembeloglazov
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save artembeloglazov/9d51f1228ea9a981bd09 to your computer and use it in GitHub Desktop.

Select an option

Save artembeloglazov/9d51f1228ea9a981bd09 to your computer and use it in GitHub Desktop.
Получение значений GET-параметров с помощью javascript
location.search.replace('?','').split('&').reduce(function(s,c){var t=c.split('=');s[t[0]]=t[1];return s;},{})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment