hey 
i want to open a new window, that can not be resizable. the problem is that even when i disable resize user can still press F11 and get fullscrren mode. after coming out of fullscreen mode, resizing is enabled!
how can i disable fullscreen mode using window.open function? is it possible?
if not,how can i disable fullscreen (disable F11 key basically)
my current code is:
thanks
(-:
i want to open a new window, that can not be resizable. the problem is that even when i disable resize user can still press F11 and get fullscrren mode. after coming out of fullscreen mode, resizing is enabled!
how can i disable fullscreen mode using window.open function? is it possible?
if not,how can i disable fullscreen (disable F11 key basically)
my current code is:
Code:
function winopen() {
window.open("main.html", "main", "toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=400,height=300");
}
thanks
(-: