Link to two webpages simultaneously

9 posts Page 1 of 1
Contributors
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Hi. Does anyone know if there is a way to make it so if someone clicks on a link, two new windows pop up with different web pages? Thanks!
http://www.megaapps.tk/
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

You want it to open in your own program or a browser in your system like chrome or firefox etc..?
Top-notch casual Dating
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

In html code, using the <a> tag
http://www.megaapps.tk/
User avatar
_Crazy
Just Registered
Just Registered
Posts: 5
Joined: Thu Nov 25, 2010 11:47 pm

Do you mean something like:
Code: Select all
<a href="http://www.google.com/">Google</a>
That will show:
Google

or

Something like:
Code: Select all
<a href="http://www.google.com/" target="_blank">Google</a>
It will look the same, but it will not be.
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

i want a link that goes to two webpages when clicked, not just one.
http://www.megaapps.tk/
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Try:
Code: Select all
<script>
function popups()
{
 window.open("about:site1", "win1");
 window.open("about:site2", "win2");
}
</script>
<p><a href="#" onclick="popups()">link</a></p>
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

thanks!
http://www.megaapps.tk/
User avatar
Livengood
Serious Programmer
Serious Programmer
Posts: 445
Joined: Tue Feb 16, 2010 6:24 am

i have mine working in html if you need that lol :D
Code: Select all
<a href="" target="_blank" onclick="window.open('http://www.google.com');window.open('http://www.google.com')">Click Me</a>
This will open 2 new windows with these links and keeping the old window with the link cooll;. This ones in html if you need it :D
Last edited by Livengood on Mon Jan 10, 2011 3:45 am, edited 1 time in total.
Image
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

thanks again.
http://www.megaapps.tk/
9 posts Page 1 of 1
Return to “Tutorials”