Skip to content

Instantly share code, notes, and snippets.

@wilnaweb
Created February 22, 2023 18:07
Show Gist options
  • Save wilnaweb/c09f3fe83c8dda3350c50a910bfdf429 to your computer and use it in GitHub Desktop.
Save wilnaweb/c09f3fe83c8dda3350c50a910bfdf429 to your computer and use it in GitHub Desktop.
JavaScript QueryString Parameters using URLSearchParams
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const referId = urlParams.get('referId');
document.getElementsByName('referID')[0].value = referId;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment