Skip to content

Instantly share code, notes, and snippets.

@MikeGarde
Last active July 10, 2018 13:03
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 MikeGarde/da7c8333c5c9360537664652c0f7f79c to your computer and use it in GitHub Desktop.
Save MikeGarde/da7c8333c5c9360537664652c0f7f79c to your computer and use it in GitHub Desktop.
jQuery version of populating Infusionsoft fields
function getParameterByName(name, url) {
if (!url) {
url = window.location.href;
}
name = name.replace(/[\[\]]/g, "\\$&");
let regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) {
return null;
}
if (!results[2]) {
return '';
}
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
function setInfusionValue(target) {
let element = $('input[name="' + target + '"]');
if (undefined !== element) {
element.val(getParameterByName(target));
}
}
/* set your targets */
$(document).ready(function () {
setInfusionValue('inf_field_FirstName');
setInfusionValue('inf_field_LastName');
setInfusionValue('inf_field_Email');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment