Hello,
I embed the forms on my site through an iFrame to keep the cookie data. With Forms 1.0 I am able to set the target for the Thank you page as parent, so it doesn't open in the iFrame, with this function:
<script type="text/javascript">
// set no conflict mode for jquery
var $jQ = jQuery.noConflict();
$jQ(document).ready(function(){
// all form submits will open in a new window
$jQ('.lpeRegForm').attr('target','_parent');
});
</script>
With Forms 2.0, I tried updating the class in that function from '.lpeRegForm' to '.mktoForm' since that is the new class for the form, but it didn't work.
I had a look through the API, but couldn't find any details about setting the target for a form.
Any help would be appreciated.
Thanks