CMS Development

bjones
Membre

Javascript Cookie Values passed into Hubspot Form

Résolue

I have a page where I am taking a URL parameter (phone number) and placing it in a cookie via javascript. Is it possible to then take that cookie value (Custom created cookie, not hubspot cookie) and pass the value into a hubspot form? The only info I could find on this was related to passing URL parameters to a hubspot form, but not cookie values.

 

Thanks in advance!

 

2 Solutions acceptées
tjoyce
Solution
Expert reconnu | Partenaire solutions Elite
Expert reconnu | Partenaire solutions Elite

Javascript Cookie Values passed into Hubspot Form

Résolue

@bjones - If it's an embed code form, you can use the onFormReady callback function to read the cookie with js and use jQuery to add it to a value in a form field

https://developers.hubspot.com/docs/methods/forms/advanced_form_options


If this answer helped, please, mark as solved 😄


tim@belch.io | forms.belch.io | Design your own Beautiful HubSpot Forms; No coding necessary.

 

Drop by and say Hi to me on slack.

Voir la solution dans l'envoi d'origine

0 Votes
tjoyce
Solution
Expert reconnu | Partenaire solutions Elite
Expert reconnu | Partenaire solutions Elite

Javascript Cookie Values passed into Hubspot Form

Résolue

@bjones - Hey, yes, that is correct, you would have to use the embed code which is possible and I literally just answered that question today here. If you don't want to use the onForm callback, you can always use the global callbacks found here. I've actually never tested them with the Forms Module but, I think they will work.

https://developers.hubspot.com/global-form-events

 

Voir la solution dans l'envoi d'origine

0 Votes
5 Réponses
tjoyce
Solution
Expert reconnu | Partenaire solutions Elite
Expert reconnu | Partenaire solutions Elite

Javascript Cookie Values passed into Hubspot Form

Résolue

@bjones - If it's an embed code form, you can use the onFormReady callback function to read the cookie with js and use jQuery to add it to a value in a form field

https://developers.hubspot.com/docs/methods/forms/advanced_form_options


If this answer helped, please, mark as solved 😄


tim@belch.io | forms.belch.io | Design your own Beautiful HubSpot Forms; No coding necessary.

 

Drop by and say Hi to me on slack.

0 Votes
bjones
Membre

Javascript Cookie Values passed into Hubspot Form

Résolue

@tjoyce I Am finally getting back to this. When I look at the onFormReady function, it seems like that requires me to manually embed the form with hbspt.forms.create(), vs using the page editor and selecting the form. Am I right in this assumtion or is there another way to utilize the onFormReady function?

 

Thanks!

tjoyce
Solution
Expert reconnu | Partenaire solutions Elite
Expert reconnu | Partenaire solutions Elite

Javascript Cookie Values passed into Hubspot Form

Résolue

@bjones - Hey, yes, that is correct, you would have to use the embed code which is possible and I literally just answered that question today here. If you don't want to use the onForm callback, you can always use the global callbacks found here. I've actually never tested them with the Forms Module but, I think they will work.

https://developers.hubspot.com/global-form-events

 

0 Votes
bjones
Membre

Javascript Cookie Values passed into Hubspot Form

Résolue

@tjoyce You are the best! I used the global form event and it worked like a charm. Thanks so much!

bjones
Membre

Javascript Cookie Values passed into Hubspot Form

Résolue

@tjoyce Thanks! This is what I needed to know. Appreciate it!