I want to disable resize of popup window. I am using following code but this is not working in any browser.
My Code::
window.open(url,'POPUP', "width=360,height=400,tool
And when i m using .
This code working in only in IE not in mozilla.
Please help me
Thanks in advance
Pankaj
ArulrajPosted Jun 17, 2010, 4:10 AM
function resiszewindow()
{
window.moveTo(0,0);
if (document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById)
{
if (top.window.outerHeight< screen.availHeight||top.window.outerWidth< screen.availWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}