Popup Windows: channelmode

channelmode popup window Channel mode, which is only applicable to MSIE, is quite similar to full screen mode, with the difference being that in channel mode the window has some of the standard browser window stuff such as a close box and a menu. It also has an annoying channel bar on the left side that pops out whenever the mouse touches the left side of the screen. To set the popup to channel mode set the channelmode property to yes in the open() command.


For example, this command in the popup script opens a window in channel mode:

window.open(href, windowname, 'width=400,height=150,channelmode=yes,scrollbars=yes');

which gives us this window.

You can indicate both MSIE's channel mode and Netscape's full screen mode in the same open() command. For example, this command in the popup script opens a window in full screen in Netscape and channel mode in MSIE:

window.open(href, windowname, 'channelmode=yes,type=fullWindow,scrollbars=yes');

which gives us this window.





About the Author
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.