SOLVED

Insert a URL Parameter into thank you page URL (using advanced choice options)

Go to solution
Anonymous
Not applicable

How do you add a token as a URL parameter in the advanced thank you page logic (choice). so you can leverage a field value to pass through the thank you page (and be used for retargeting purposes).

Any one has implemented this before using the advanced choice and manually pasting the token here (as part of the URL)? Or do we need JS to push the value to the URL?

HELP!

Screen Shot 2015-06-26 at 09.20.04.png

1 ACCEPTED SOLUTION
SanfordWhiteman
Level 10 - Community Moderator

Is the field value you want to tokenize a field on the form itself?  In that case you can do something like this in the form's onSuccess:

form.onSuccess(function(vals,thankYouURL){

    document.location = thankYouURL + '&Size=' + vals.size;

    return false;

});

View solution in original post

15 REPLIES 15