Make a link open a new window (not tab)

conbask picture conbask · Oct 17, 2012 · Viewed 435.8k times · Source

Is there a way to make a link open a new browser window (not tab) without using javascript?

Answer

Ievgen Martynov picture Ievgen Martynov · Apr 2, 2013

That will open a new window, not tab (with JavaScript, but quite laconically):

<a href="print.html"  
    onclick="window.open('print.html', 
                         'newwindow', 
                         'width=300,height=250'); 
              return false;"
 >Print</a>