Getting a link to open two pages
This may be a pretty simple question, but oh well ;)
I'm wondering, how would I get one link to open two different sites in two different windows? One could open in the same window, and the other be in a resource window, or both in separate windows/tabs, it doesn't really matter. I just need to be able to click on one link and get two pages to come up.
Thanks in advance!
open multiple website instead of just two
I want to open multiple website instead of just two. tried to mopdify it but it doesn't work... Thanks in advance,
Ice
open two different links images in one window on one click
open two different links images in one window on one click
For example
there are two different images link but i want to open both the images in same window on one click i have tried open two different links or images on one click but they opened it in other window i want to open the both the images or links in same window or new window but they must open in one window
what i m doing to open links in two other windows on one click
<a href="tenders/<?php echo $arr[$i]['image_location']?>" onclick="window.open('correction/<?php echo $arr[$i]['image_correction']?>','newwin');"><img src="download_icon.gif" border="0" ALT="<?php echo $arr[$i]['organization_name'] ?>"></a></div></td>
opening more than 2 pages
Thanks for the advice, bit it didn't work for me.
So I found this, which works a treat:
<html>
<head>
<script type="text/javascript">
function open_win() {
window.open("http://www.java2s.com/")
window.open("http://www.facebook.com/")
window.open("http://www.google.com/")
window.open("http://www.yourcorset.com/")
window.open("http://www.mythongoftheday.com/")
window.open("http://www.boo.by/")
window.open("http://www.searchandsocialmediamarketing.co.uk/")
window.open("http://www.posterous.com/")
}
</script>
</head>
<body>
<form>
<input type=button value="Open Windows" onclick="open_win()">
</form>
</body>
</html>