Make a link open a new window (not tab) [duplicate]

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

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

Leave a Comment