Created
March 10, 2015 10:20
-
-
Save shankie-codes/621e1e5d756ceb9e0ff4 to your computer and use it in GitHub Desktop.
jQuery Query Parameters plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jQuery Query Parameters plugin from https://css-tricks.com/snippets/jquery/get-query-params-object/ | |
jQuery.extend({ | |
getQueryParameters : function(str) { | |
return (str || document.location.search).replace(/(^\?)/,'').split("&").map(function(n){return n = n.split("="),this[n[0]] = n[1],this}.bind({}))[0]; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment