When I try to call a URL as a pop-up window through JavaScript, after loading the pop-up window I am able to re-size the window by mouse dragging even after I set the resizable
property as "0". Code:
<script type="text/javascript">
function poponload()
{
mywindow = window.open("factory.php?content=con1", "mywindow", "location=1,status=1,scrollbars=0,width=300,height=300,resizable=0");
mywindow.moveTo(150, 150);
}
</script>
Please clarify if I made any mistake in the code.