Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to disable toolbars

Status
Not open for further replies.

jcroft

Programmer
Aug 23, 2001
52
US
<a href=&quot;anypage.asp;&quot; target=&quot;_blank&quot;>Click Here</a>

what is the javascript that I can add to this to make the pop up window only have the title bar?
--only those that do not try, fail--
 
Try...
Code:
<html>
<head>
<script language=javascript>
function openMe(newpage) {
  newWin = window.open(newpage,&quot;myWin&quot;,&quot;toolbars=no&quot;);
  return false;
}
</script>
<body>
<a href=&quot;&quot; onClick=&quot;return openMe('anypage.asp')&quot;>Click Here</a>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top