I am using this JavaScript code to open a window in a full screen mode ....
[code=JavaScript]
var styles = "menubar=no,loc ation=no,resiza ble=no,scrollba rs=yes,status=n o,left=0,top=0, width="+screen. width+",height= "+screen.height ;
alert('Width: ' + screen.width + 'Height: ' + screen.height);
var _win = window.open("we lcome.jsp","ope ner_window",sty les);
[/code]
Now it's working properly in IE but not working in Mozilla.
In Mozilla, first of all it's having the status bar and secondly it's not getting full screen.
What should i be doing to correct it ..please help !
[code=JavaScript]
var styles = "menubar=no,loc ation=no,resiza ble=no,scrollba rs=yes,status=n o,left=0,top=0, width="+screen. width+",height= "+screen.height ;
alert('Width: ' + screen.width + 'Height: ' + screen.height);
var _win = window.open("we lcome.jsp","ope ner_window",sty les);
[/code]
Now it's working properly in IE but not working in Mozilla.
In Mozilla, first of all it's having the status bar and secondly it's not getting full screen.
What should i be doing to correct it ..please help !
Comment