title bar

Hi-<br />
<br />
I've been really swamped with work lately and haven't been able to keep up with this forum in the last few days.<br />
<br />
I need to open a new window with a link, but I only want to have a title bar on it. Howzit done?<br />
<br />
Thanks,<br />
Gandalf :D<!--content-->try this:<br />
<br />
<A HREF=http://www.htmlforums.com/archive/index.php/"#" ONCLICK="open('http://www.yahoo.com','MINIme','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resiza ble=0,width=300,height=300')">Open a Window</A><!--content-->Thanks. Works fine in IE5, but not NS6. Can you tell me how to get it to work with NS?<br />
<br />
Gandalf :D<!--content-->very interesting. Works in IE and N4.7. I'll play around with it a bit and post when its a works for all fix.<!--content-->Originally posted by Thee Gandalf <br />
Thanks. Works fine in IE5, but not NS6. Can you tell me how to get it to work with NS?<br />
<br />
Gandalf :D Here's one that works:<br />
<br />
<head><br />
<script type="text/javascript" LANGUAGE="JavaScript"><br />
<!-- Begin<br />
function NewWin(mypage, myname, w, h, scroll) {<br />
var winl = (screen.width - w) / 2;<br />
var wint = (screen.height - h) / 2;<br />
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='<br />
win = window.open(mypage, myname, winprops)<br />
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }<br />
}<br />
// End --><br />
</script><br />
</head><br />
<br />
<body><br />
<a href=http://www.htmlforums.com/archive/index.php/"#" onClick="NewWin('http://www.yahoo.com','','310','240','yes');return false;">Yahoo</a><br />
</body><!--content-->
 
Back
Top