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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disable ToolBar When Link is Clicked

Status
Not open for further replies.

221d

Programmer
Jul 31, 2003
2
US
Hi All
Is there any way in IE to disable ToolBar when user click the link provided in the form?

thanks to all!
 
If the link clicked opens a new pup up window using window.open javascript function, then you can specify the attributes of a newly open window as arguments of this function:

newWindow = window.open("mypage.asp", "newWindowName", "toolbars=1,scrollbars=1,menubar=1,status=1,resizable=1,width=500,height=300,top=0,left=0", false);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top