|
| Register now to interact with over 11,000 members! Registered users have Posting Privileges, free access to Private Messaging, Email Notifications and more. |
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Posts: n/a
|
New Window Size...
I figured out how to make a new window open when a link is clicked, but is there a way to adjust the size of a new window? I want the links to provide some supplemental information that shouldn't clutter the main window, but I don't want a full size window to open....just one big enough for the info.
Thanks! Mike |
|
|
#2 |
|
home boy
Join Date: Jan 2002
Location: Vancouver, WAUSA!
Posts: 1,841
Reputation: -12
|
Try this for a sizeable image window:
<a onclick=window.open('Images/index.html','','width=nnn,height=nnn,scrollbars=ye s,resizable=yes,location=no,menubar=no,toolbar=no, top=0,left=0') href="javascript:void(0)">TEXT of IMG Tag</a> Try this for a sizeable html window: <a href=javascript:void(0); onclick=window.open('your.html','','width=nnn,heig ht=nnn,scrollbars=yes,resizable=yes,top=0,left=0') >TEXT or IMG TAG</a> Putting the window.open and related parameters on one line, the same line, will cut down on any problems (the javasacript:void(0) helps NetScape get along with the window.open). |
|
|
![]() |
| Thread Tools | Search this Thread |
|
|