hai every one iam opening an window through javascript
[removed email]
it works perfect with fullscreen mode even without titlebar where in if hosted in an server and accessing via tcp/ip network its opening with titlebar and not in full screen can any one say solution for this or any setting to be made in server?
[removed email]
Code:
<script type="text/javascript" language="javascript">
var k=false;
window.open("main.aspx","","status=no,fullscreen=yes");
window.resizeTo(1,1)
k=true;
window.onresize = function()
{
if(k==true)
{
window.opener="s";
window.close();
}
}
</script>
</head>
<body onload="javascript:window.opener='x';window.close();" >
</body>
Comment