Include form fields as redirect URL parameters on an embedded form

Hi,

I’ve the same issue as the same @lloydsilver . The thing is I want to redirect users to a dynamic URL which already includes a “?”.

Basically I want our users to fill a form with their website as one property to be redirected to a URL which include their website.

So if I a fill a form putting: http://www.mywebsite.com

People would be redirected to the following URL http://www.domain.com/simulate.php**?**url=http://www.mywebsite.com

1. I’m not sure to really understand how to use target:’#target-node-for-form-build

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.

3. I tried the @derekcavaliero method but i didn’t get how to use window.location = “http://www.yoururl.com?” + formData;

Thanks in advance for your help