Skip to content

Instantly share code, notes, and snippets.

@gh-o-st
Last active November 11, 2020 17:51
Show Gist options
  • Select an option

  • Save gh-o-st/ed14e75b24893e2d5c3b5a3b707ca390 to your computer and use it in GitHub Desktop.

Select an option

Save gh-o-st/ed14e75b24893e2d5c3b5a3b707ca390 to your computer and use it in GitHub Desktop.
const paramExists = function(name) {
let params = window.location.search;
if (params.indexOf('?'+name) > -1 || params.indexOf('&'+name) > -1) {
return true;
}
return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment