SOLVED

Open link in a new tab on a landing page

Go to solution
Vlada_Prasolova
Level 5

Open link in a new tab on a landing page

Hi!
we are launching a big webinar campaign and i've put some information about the speakers/other events on the actual webinar registration page
the problem is that if a person clicks these links, he will go away from the form before actually registering

is there a way to make these links open in a new tab and enable the leads to proceed with their registrations?
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Open link in a new tab on a landing page

If I am following the idea corerctly you may use the target attribute of the link :

<a href="http://www.example.com/" target="_blank">`Webinar Info</a>

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Re: Open link in a new tab on a landing page

If I am following the idea corerctly you may use the target attribute of the link :

<a href="http://www.example.com/" target="_blank">`Webinar Info</a>

Anonymous
Not applicable

Re: Open link in a new tab on a landing page

In the past, I would create a landing page with speaker bio information (including a link back to registration) , rather than link to an outside page.  
Anonymous
Not applicable

Re: Open link in a new tab on a landing page

Linking to "jump to" tags in the regisration page could be an interesting option.

<a href="#bio1-link">Product 1</a>
<a href="#bio22-link">Product 2</a>
 
and so on.
 
Then define the tag where the section starts
 
<a name="bio1-link">
where the section starts.
Vlada_Prasolova
Level 5

Re: Open link in a new tab on a landing page

Thanks! that seems to solve it!
Cheers