I have a select box that calls window.open(url) when an item is selected. Firefox will open the page in a new tab by default. However, I would like the page t
window.open(url)
try that method.....
function popitup(url) { //alert(url); newwindow=window.open("http://www.zeeshanakhter.com","_blank","toolbar=yes,scrollbars=yes, resizable=yes, top=500, left=500, width=400, height=400"); newwindow.moveTo(350,150); if (window.focus) { newwindow.focus() } return false; }