How to redirect to new tab?

costolleumus

BANNED
Joined
Feb 17, 2011
Messages
46
Reaction score
10
Here what I want:
when someone visit my site (mysite)in new tab open another site (redirect site).
Is that possible?
thank you
 
Let me make sure that I understand your question, do you want another site to load in a new window as soon as your site loads OR do you want the visitor to click on something on your site and then it loads another window with a different site?

Either way both are possible, I just need to know which you are looking for so I can give you the correct code.

HTH
 
Hi Costolleumus

placing this codesnippet within your head tags will result in opening every link in a new tab
Code:
<base target="_blank" />

otherwise you could just specify which link has to open in a new tab
Code:
<a href="yourlink" target="_blank">Anchor text</a>

hope I was able to help you
 
Last edited:
Thank you, but this work when visitor click on some link first. I need to link open automaticly in a new tab.
 
End User controls via their own browser how new windows/tabs are opened. You cannot control anything other than the target="blank" as indicated above.
 
Back
Top