[thelist] IE popup windows

Paul Backhouse paul.backhouse at 2cs.com
Wed Jan 23 06:47:33 CST 2002


cheers simon, but you're on the wrong lines - I know about those properties,
but Im talking about a popup window tat has no grey bars around it, not
title bar (ie name of page - Microsoft Internet Exploror) - when i first
came acorss a window like this i assumed it was a div - but it wasn't theres
something you can do that will only show the page - nothing else (i think
you can show scrollbars on it actually).

just wondering if anyone knows how to do that - the code im using at current
is:
<script language="JavaScript">
<!--
function popup(page) {
OpenWin =
this.open(page,'ThisTime','width=200,height=100,toolbar=no,menubar=no,locati
on=no,scrollbars=auto,resize=no,status=no');
}
popup('time.asp')
self.close();
//-->
</script>

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
window.open(url_page,string_PageTitle,string_Propertines)

url_page: url of the page you want to display in the new window
string_PageTitle: the words appearing in the title bar of that window, if
there is one..
string_Properties: properties of the page, quoted, in name=value pair form
                         eg:
"width=300,height=300,status=no,menubar=no,scrollbars=no"

there's loads of other properties you can use

HTH
simon






More information about the thelist mailing list