Skip to main content

JavaScript Functions to Parse URL Hash and Query String Parameters.

/**
 * Retrieves the value of a URL query string parameter by name.
 *
 * @param {string} paramName
 * @return {string|null} The value of the query string parameter, or null if not found.
 */
export function getQueryStringParam(paramName) {
  const params = new URLSearchParams(window.location.search);
  return params.get(paramName);
}

/**
 * Retrieves the value of a hash query string parameter by name.
 *
 * Hat tip: https://stackoverflow.com/a/57018898
 *
 * @param {string} paramName
 * @return {string|null} The value of the hash query string parameter, or null if not found.
 */
export function getHashQueryStringParam(paramName) {
  const params = new URLSearchParams(window.location.hash.substr(1));
  return params.get(paramName);
}