CMS Development

bjones
Miembro

Javascript Cookie Values passed into Hubspot Form

resolver

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 Soluciones aceptadas
tjoyce
Solución
Experto reconocido | Partner nivel Elite
Experto reconocido | Partner nivel Elite

Javascript Cookie Values passed into Hubspot Form

resolver

@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.

Ver la solución en mensaje original publicado

0 Me gusta
tjoyce
Solución
Experto reconocido | Partner nivel Elite
Experto reconocido | Partner nivel Elite

Javascript Cookie Values passed into Hubspot Form

resolver

@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

 

Ver la solución en mensaje original publicado

0 Me gusta
5 Respuestas 5
tjoyce
Solución
Experto reconocido | Partner nivel Elite
Experto reconocido | Partner nivel Elite

Javascript Cookie Values passed into Hubspot Form

resolver

@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 Me gusta
bjones
Miembro

Javascript Cookie Values passed into Hubspot Form

resolver

@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
Solución
Experto reconocido | Partner nivel Elite
Experto reconocido | Partner nivel Elite

Javascript Cookie Values passed into Hubspot Form

resolver

@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 Me gusta
bjones
Miembro

Javascript Cookie Values passed into Hubspot Form

resolver

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

bjones
Miembro

Javascript Cookie Values passed into Hubspot Form

resolver

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