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

open basic window

Status
Not open for further replies.

bigbird3156

Programmer
Feb 20, 2001
183
0
0
AU
Hi guys,

I am setting up a website with a link to a terms & conditions page.

I want the terms and conditions page to open in one of those basic, stripped back windows you see around - you know, with no buttons or navbars or anything - just the basic close button up the top and a scroll bar...

is this a JS issue & if so how do i do it?

Thanks

[wiggle]The Bird from Down Under- Bigbird 3156
Programmer?? - I thought the option was pretender not programmer!![jester]
 
Try this and see if it's what your trying to do:

Code:
<input type="button" name="buttonlink" 
value="Terms And Conditions" onClick="window.open'TermsAndConditions.html','newwindowzoom','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=410,height=400,left=100,top=100')" />

Hope this helps.
 
Thanks heaps for that,

it was exactly what i was after!!

[wiggle]The Bird from Down Under- Bigbird 3156
Programmer?? - I thought the option was pretender not programmer!![jester]
 
ahhh- sorry...

any idea how to do this with a href???


[wiggle]The Bird from Down Under- Bigbird 3156
Programmer?? - I thought the option was pretender not programmer!![jester]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top