Is there any possibility to open a anchor tag in new window with writing javascript code or JQuery code

html, javascript, jquery

Solution

Why go for JavaScript or jquery, just do it like this

<a href="#" onclick="window.open('http://www.google.com/','mywindow','width=1100,height=500');">Open google in new window</a>

Live Demo

Problem

Actually i am trying to write anchor tag with href to open in new window not in new tab as i read in somewhere target="_blank" opens in new tab or new window so i tried like below ``` <a href="http://www.gmail.com" target="_blank">gmail</a> ``` but its opened in new tab not in new window. Now I need to open in new window with writing javascript and JQuery. Thanks in advance.

Original source

Related problems