How can I open a thank you page in a new window with no address bar?

Anonymous
Not applicable

How can I open a thank you page in a new window with no address bar?

We're trying to create a campaign in which Marketo will register leads to view material, and upon submit will present the material in a new window that doesn't display the materials direct URL in an address bar.  In essence, we're tring to prevent leads from sharing the direct URL of the end material with associates.

Does anyone have a solution for this?
Tags (1)
2 REPLIES 2
Anonymous
Not applicable

Re: How can I open a thank you page in a new window with no address bar?

If I am following your idea correctly a borderless iframe can host the landing page containing the form

<iframe src="myURL" width="300" height="300" frameBorder="0">Contents</iframe>

or direct bordless references

<a href="http://content.company.com/LP.html" rel="shadowbox;height=625;width=730"><img src="/images/download.png" alt="Download" width="202px" height="62px" align="center"></a>

or

<a  class="flag_button" href="javascript:openPopup('https://company.com/LP.html?uk/en',500,500);" title="Contents">Contents</a>
Anonymous
Not applicable

Re: How can I open a thank you page in a new window with no address bar?

Just press rightmouse button for properties and your prospect has the url anyway.

You could however create a hidden div with the download button below the form, which will be visible after the form submit. And make sure you only populate the link behind the button after the form submit (with jQuery, AJAX, or so). Or simpler would be to scrumble the url with character coding (e.g. "/" = "%252F").