Very Simple Question
-
I am very very new Babie in Java Script. I want to disable the Maximize Button of the newly open Window through window.open(" "," ", options) In Microsoft Internet Explorer 5. I already used resize = no. but it dose not work. Thanks in advance.
-
I am very very new Babie in Java Script. I want to disable the Maximize Button of the newly open Window through window.open(" "," ", options) In Microsoft Internet Explorer 5. I already used resize = no. but it dose not work. Thanks in advance.
-
Try
resizable=no
instead ofresize=no
. Also no spaces are allowed in the optionstring (I think IE5 can handle spaces though). This works on IE6:Window.open("myPage.htm","myExample","menubar=no,resizable=no,width=200,height=200");
/moliate
Thanks For Reply But . . . :confused: It dose not work. It actually makes the window size not changeable through dragging with Mouse. But I clicked Maximize Button of the Window it maximize to the Screen Size. Thanks for reply but also looking forward . . . :confused: Thanks in advance.
-
Thanks For Reply But . . . :confused: It dose not work. It actually makes the window size not changeable through dragging with Mouse. But I clicked Maximize Button of the Window it maximize to the Screen Size. Thanks for reply but also looking forward . . . :confused: Thanks in advance.
Apparantly it works differently on IE5. The wonderful world of JavaScript implementation conformity... X| Anyway, check out: http://www.kipp.smith.net/javascripts/noresize.htm Don't have IE5 installed so I cannot try it, but I hope it might help. /moliate