Skip to content

Instantly share code, notes, and snippets.

@icu0755
Created June 1, 2015 09:10
Show Gist options
  • Save icu0755/0974eb24f358db1d9a42 to your computer and use it in GitHub Desktop.
Save icu0755/0974eb24f358db1d9a42 to your computer and use it in GitHub Desktop.
function getUrlParam( paramName ) {
var reParam = new RegExp( '(?:[\?&]|&)' + paramName + '=([^&]+)', 'i' ) ;
var match = window.location.search.match(reParam) ;
return ( match && match.length > 1 ) ? match[ 1 ] : null ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment