1. How can i add a time delay in the form code in order to be sure that Hubspot updates the property in order to create the right redirected URL
2. I tried the dynamic query string (as i saw in HS knowledge) but it didn’t work neither and i’ve the feeling it’s because of the “?” which is inside the URL.
The method outlined in this article populates HubSpot form fields from a query string before the form is submitted. You’re looking to do the opposite — populate a query string with form field values after a form is submitted.
@derekcavaliero’s solution in this thread allows form data to populate a redirect URL’s query string (following a ?) after a predefined delay.
Per this comment in the original thread, could you clarify where you got stuck regarding “I didn’t get how to use window.location ="http://www.yoururl.com?" + formData;”?
If I’m understanding you correctly, and given your example above, you’d replace http://www.yoururl.com? with http://www.domain.com/simulate.php?.
@derekcavaliero, it sounds like @Gthn also wants to pick out the website property/field specifically. Could you speak to how that might be accomplished through jQuery (as opposed to appending all form fields with var formData = $form.serialize();)? Appreciate your input!
→ Not exactly. The yoururl.com will be replaced with "http://www.domain.com/simulate.php**?**url= " . I’m afraid it generates a conflict because it already includes a “?”. So, with the form parameter it will be a second “?”.
could you clarify where you got stuck regarding “I didn’t get how to use window.location =“http://www.yoururl.com?” + formData;”?
→ I don’t know how to use the +formdata. I tried to use this kind of URL given in the article you sent me but the redirection was not working
Yep I can, I actually just helped out another member of the forum with something similar.
What is the final URL format you are looking to redirect to? Also - do you have an example page with the form that I could see?
In hindsight - the serialize option works but it is admittedly a little messy.
The $form argument of the onFormSubmit callback is a jQuery collection of the entire submitted HubSpot <form> element that is stored at the moment the form was submitted, and successfully validated.
That means you can dive into the collection and “cherry-pick” whatever field values you may want to use doing something like this:
var website = $form.find('input[name="website"]').val();
That would give you the isolated website field value in a separate variable you could then append to your redirect location as needed.
setTimeout( function() {
window.location = "http://www.domain.com/simulate.php?url=" + encodeURIComponent( website );
}, 500 ); // Redirects to url with query string data from form fields after 1/2 second.
You could do this infinitely - however if you need to pass/map many fields to specific query string keys - I also have a solution for that which is a bit more elegant in nature.
The var website = $form.find('input[name="website"]').val();snippet applies to the original poster’s use case. The code will retrieve the form’s website field value with jQuery and the rest of the code @derekcavaliero provided will append this website value to the redirect URL of http://www.domain.com/simulate.php.
If you’re looking to append all the form field data to the redirect URL, go with the code in the soluton to this thread.
Be aware that you’ll have to set the portalId and formId as well as change http://www.yoururl.com? to your desired redirect URL.
@IsaacTakushi, actually, I am hoping the URL redirect looks like this.
Tutorup and that’s it. I don’t want to get all the form data to be included in the URL. Only the email.
I have removed the “portalId” & the “formId” just to post it publicly.
<!--[if lte IE 8]>
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script>
<![endif]-->
<script type="text/javascript" src="//js.hsforms.net/forms/v2.js" charset="utf-8"></script>
<script>
hbspt.forms.create({
portalId: 'XXXXXX',
formId: 'XXXXXXXXXXXXXXXXX',
inlineMessage: 'You are being redirected to the TutorUp Application...',
onFormSubmit: function($form){
var website = $form.find('input[name="email"]').val();
setTimeout( function() {
window.location = "http://app.site.com?=" + encodeURIComponent( email );
}, 500 ); // Redirects to url with query string data from form fields after 1/2 second.
}
});
</script>
The goal here is to pull the email address entered in the form and insert into the redirect URL so that it goes to app.site.com/email@email.com
I was able to get it to post the email in the string through adding {{email}} to the redirect URL, but it adds a lot of other stuff. It looks like this.
Per this post, the __hstc and __hssc parameters are added by the HubSpot cross-domain linking setting you have enabled. This can be disabled, but then you’ll lose the ability to track visitors jumping from your HubSpot-hosted content to your app.
The submissionGuid parameter is appended whenever a HubSpot form redirects to another page. It is used to help track submissions/conversions. This cannot be disabled for embedded forms which redirect.
If a completely clean redirect URL is critical, you may want to pursue custom-coding your form and passing data to HubSpot via the Forms API.
Many thanks for you help. Based on what you gave me and with help from a friend, I was able to get it to properly work. Here is the final working format that was successful for me.
For anyone else trying to do this, here’s a quick “how-to”.
Simply drop the code below into the source code (RichText/Advanced/Source Code) on a rich text block in the COS. Change out the portalId and formId to match your form. You can find both of these values by opening up your form and looking at the URL.
The short value after “forms” is your portal ID, and the longer value after “editor” is your FormID.
From there, change the input name to whatever field in your form you are refrencing. You’ll change out “FieldID” to your form field. That would be “email” or “category” or whatever else you’re asking in the form.
Where I have “http://websiteurl.com?email=” just change that to whatever you want in front of your passed field variable. When the redirected, it will read “Loading...” and the FieldID will be replaced with the variable from the form.
I am not sure what “emailWeb” do, but that seemed to make it work, so I am not going to change it on my end. Maybe @IsaacTakushi could speak more to that.
Thanks so much for sharing, @mikefreeman! I’m glad you got it to work.
In your code, emailWeb is the name of a variable you define. The name itself doesn’t really matter; you’re just using it to hold the value of $form.find('input[name="FieldID"]').val();.. You then append emailWeb to the end of your URL, http://websiteurl.com?email, effectively setting a value for the email query parameter.
@IsaacTakushi Just wanted to post and say many thanks! after days and hours of testing and troublshooting we finally managed to get it to work with this little gold gem java snippet below. many thanks!!!
This feels like it should work… but just doesn’t.
I can’t seem to get the form to save. It just pops up a red error message and says “Your rich text has unsafe HTML.”
any ideas?
@JTodrick You can’t implement the JavaScript inside the confirmation message box in the form settings, the code needs to be added into the actual embed code using the callbacks where the form is being used/embedded.
I’ve got your script working as intended. Thanks for this solution. That said, I am interested in cleaning up the redirect a bit. I need to pass 4-6 fields to specific query string keys. Would you mind sharing the more elegant solution that you mentioned?
@Albo Here is a GitHub gist showing mapping mulitple fields to parameters.
You’d want to edit the queryMap variable to change what form fields map to what query string parameter. Then down in the redirect - you’d need to update the redirect location.
Quick question for you guys. I’ve got no problem deploying the solution as you suggested for the email form field. The only thing problem that I’m seeing that Hubspot seems to be replacing the @ of the email address with %40