Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I open two pages from a single click without using JavaScript?

Tags:

I have some text in a link. When I click on it I must open 2 pages. No problem here... but the trick is that I am not allowed to use JavaScript. Is this possible only with HTML?

like image 462
zozo Avatar asked Apr 06 '11 13:04

zozo


People also ask

How do I open two pages in one link in HTML?

You can try this in the anchor tag. Where in anchor tag use onclick method with the open method. Define both links using the open method, it will open two links with one click.

How do I make one link open multiple tabs?

Just right click on the link and hold it to drag a box around the links. When you release the right click of your mouse, all those links will open in new tabs.

Can you have two href?

The first link is a Google Font. You can have as many as you want. Show activity on this post. You cannot add multiple href's to the same link tag.


1 Answers

Without JavaScript, it's not possible to open two pages by clicking one link unless both pages are framed on the one page that opens from clicking the link. With JS it's trivial:

<p><a href="#" onclick="window.open('http://google.com');     window.open('http://yahoo.com');">Click to open Google and Yahoo</a></p> 

Do note that this will be blocked by popup blockers built into web browsers but you are usually notified of this.

like image 96
Marcel Avatar answered Oct 12 '22 06:10

Marcel