Created
November 6, 2024 15:40
-
-
Save justingivens/2e605e03368b108f8fe6f55ce8257b57 to your computer and use it in GitHub Desktop.
If you have ever needed to dynamically fill in a HubSpot Form field, this is code for you.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
//Only need to process each form once it's ready. | |
let processed = {}; | |
//Loop over the event listener and look only for hsFormCallback and onFormReady | |
window.addEventListener('message', function(event) { | |
if(event.data.type === 'hsFormCallback' && event.data.eventName === 'onFormReady') { | |
const forms = event.currentTarget.HubSpotForms.getForms(); | |
forms.forEach(form=>{ | |
//Checking if it's ready. | |
if( form.isFormReady ) { | |
fillInFields(form.id + '_' + form.instanceId); | |
} | |
}); | |
} | |
}); | |
/** | |
* Fills in the Fields within each specific form that is passed in | |
* @param string | |
* EX: 3fadb772-36ff-40b2-a830-043cf24a26e2_89602285-47f9-44ab-b255-3d4419d767d1 | |
*/ | |
function fillInFields(form) { | |
if( processed[form] ) { | |
return; | |
} | |
let element = document.querySelector('form.hs-form-'+form); | |
if( element ) { | |
//Add in any inputs, selects, etc.. here | |
let input = element.querySelector('input[name="case_study___requested_download"]'); | |
if( input ) { | |
input.value = '{{row.name}}'; | |
} | |
processed[form] = true; | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment