CMS Development

bjones
メンバー

Javascript Cookie Values passed into Hubspot Form

解決

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件の承認済みベストアンサー
tjoyce
解決策
名誉エキスパート | Elite Partner
名誉エキスパート | Elite Partner

Javascript Cookie Values passed into Hubspot Form

解決

@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 いいね!
tjoyce
解決策
名誉エキスパート | Elite Partner
名誉エキスパート | Elite Partner

Javascript Cookie Values passed into Hubspot Form

解決

@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 いいね!
5件の返信
tjoyce
解決策
名誉エキスパート | Elite Partner
名誉エキスパート | Elite Partner

Javascript Cookie Values passed into Hubspot Form

解決

@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 いいね!
bjones
メンバー

Javascript Cookie Values passed into Hubspot Form

解決

@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
解決策
名誉エキスパート | Elite Partner
名誉エキスパート | Elite Partner

Javascript Cookie Values passed into Hubspot Form

解決

@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 いいね!
bjones
メンバー

Javascript Cookie Values passed into Hubspot Form

解決

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

bjones
メンバー

Javascript Cookie Values passed into Hubspot Form

解決

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