Skip to content

Instantly share code, notes, and snippets.

@Mario-Duarte
Created May 11, 2018 09:00
Show Gist options
  • Save Mario-Duarte/840d504d693a5738178a22c8937f6bc5 to your computer and use it in GitHub Desktop.
Save Mario-Duarte/840d504d693a5738178a22c8937f6bc5 to your computer and use it in GitHub Desktop.
jQuery plugin to get url parameters
$.urlParam = function(name){
var results = new RegExp('[\?&]' + name + '=([^]*)').exec(window.location.href);
if (results==null){
return null;
}
else{
return results[1] || 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment