0
I noticed that it works to replace the "no" command with "yes" in the window.openscript. However, it seems that "no" and "0" are not interpreted at all. I have tried to put "Hidden" and nothing either. What can I do to solve the problem? I wouldn’t want the window to open with the address bar or the window to be resizable. I’m posting the code I’m using. I really appreciate anyone who can help me.
<script>
function openWindow() {
window.open("banner", "_blank", "location=no,resizable=no,width=700px,height=421px");
}
var timer = setTimeout("openWindow()", 10000);
</script>