Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the magic of those links that will open a new browser like in firefox?

Tags:

html

anchor

<a ... target="_blank">...</a>

This kind of link only opens a new tab,but some websites will open a new browser instance,what's the trick?

like image 804
compile-fan Avatar asked Jun 11 '11 03:06

compile-fan


People also ask

What is Fire Fox used for?

Firefox is a Web browser that is smaller, faster, and in some ways more secure than the Mozilla browser from which much of its code was originally derived. Compared to Internet Explorer, the most popular Web browser, Firefox gives users a cleaner interface and faster download speeds.


1 Answers

In Firefox, opening a link in a new tab or window is controlled by the browser's setting. There are ways to manipulate it such as:

window.open("", "test", "height=300,width=300,modal=yes,alwaysRaised=yes")
like image 162
ngen Avatar answered Sep 30 '22 20:09

ngen