Hi,
function myWindows(link) {
if (!window.focus) return true;
var href;
if (typeof(link) == 'string') href=link;
else href=link.href;
window.open(href, 'width=5000,height=500,scrollbars=yes');
return false;
}
}
<a href=2bla.php" onClick="return myWindows(this)">Open</a>
Above code opens new plain windows. How can i do same thing with a submit button? It will be plain as it is made with a link.
Thanks