Skip to content

Instantly share code, notes, and snippets.

@codecakes
Created August 6, 2016 21:08
Show Gist options
  • Save codecakes/b0d4c2b8decd7a678a836d69c64291b6 to your computer and use it in GitHub Desktop.
Save codecakes/b0d4c2b8decd7a678a836d69c64291b6 to your computer and use it in GitHub Desktop.
Simple Url Parameter extraction from DOM
"use strict";
let paramRegex = /([a-zA-Z0-9]+\=[a-zA-Z0-9]+)/ig;
location.search.match(paramRegex);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment