Skip to content

Instantly share code, notes, and snippets.

@jakcharlton
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakcharlton/34b36492c4e365d5afda to your computer and use it in GitHub Desktop.
Save jakcharlton/34b36492c4e365d5afda to your computer and use it in GitHub Desktop.
Get the LeadMachine ID from the query string
<script type="text/javascript">
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
var lead_id = getParameterByName('lead_id');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment