How can I open a thank you page in a new window with no address bar? | Community
Skip to main content
October 1, 2013
Question

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

  • October 1, 2013
  • 2 replies
  • 1113 views
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?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

October 1, 2013
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>
October 1, 2013
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").