Hi @SanfordWhiteman , i really appreciate the above, you are correct the aim is the track MKT on the 2nd LP. when i added the the code to the LP header , code was showing up on the LP(Image attached) , now if i add the code with script tag to the form setting the code don't show as above. The 2nd LP only works when you refresh the 2nd LP page, or fill the form close it and fill it again, so seems like the cookies are being tracked? for the form and MKT still not working please, can you confirm where i need to add the code and if script tags are needed. I have also tried script tag on the page and same result only works with cookies from pre-fill or refreshed page :
<script>// <![CDATA[
MktoForms2.whenReady(function(mktoForm){
mktoForm.onSuccess(function(submittedValues,originalThankYouHref){
let thankYouUrl = new URL(originalThankYouHref);
thankYouUrl.searchParams.set("mkt_tok", window.__mktTokVal);
document.location.href = thankYouUrl.href;
return false;
})
})
// ]]></script>
... View more