Hi,
1) is this thank you message on special page?
If yes, then please go to your form -> Advanced -> More options -> Scripts -> Submitted script -> check Custom.
Click on Create Code Framework and you will get a code like this one:
function ff_yourFormName_submitted(status, message)
{
switch (status) {
case FF_STATUS_OK:
// do whatever desired on success
break;
case FF_STATUS_UNPUBLISHED:
case FF_STATUS_SAVERECORD_FAILED:
case FF_STATUS_SAVESUBRECORD_FAILED:
case FF_STATUS_UPLOAD_FAILED:
case FF_STATUS_ATTACHMENT_FAILED:
case FF_STATUS_SENDMAIL_FAILED:
default:
alert(message);
} // switch
} // ff_yourFormName_submitted
There you just need to enter a code into that "do whatever desired on success", for example, in this way:
function ff_yourFormName_submitted(status, message)
{
switch (status) {
case FF_STATUS_OK:
window.open("http://www.crosstec.org", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=400");
break;
case FF_STATUS_UNPUBLISHED:
case FF_STATUS_SAVERECORD_FAILED:
case FF_STATUS_SAVESUBRECORD_FAILED:
case FF_STATUS_UPLOAD_FAILED:
case FF_STATUS_ATTACHMENT_FAILED:
case FF_STATUS_SENDMAIL_FAILED:
default:
alert(message);
} // switch
} // ff_yourFormName_submitted
yourFormName is name of your form (not title)
2) or you are looking for something like this?
crosstec.org/breezingformsdemo/index.php...e-forms-feature.html
Hope this helps
Regards,
Tihana