Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: Opening a new window


Message #1 by jiwilliams@c... on Fri, 17 May 2002 21:59:41
This is a multi-part message in MIME format.

------=_NextPart_000_0005_01C1FDFB.A73CE8D0
Content-Type: text/plain;
	charset="us-ascii"
Content-Transfer-Encoding: 7bit

Jimmy, the link tag has an attribute named 'target' you can use to
specify a new window.  You can give the window a name of your choosing,
and by re-using the name you can cause other links to appear in the same
window.

 

  <a href="nextpage.htm" target="mywindow">Click here for next page</a>

 

  <a href="lastpage.htm" target="mywindow">Click here for last page</a>

 

Both nextpage and lastpage will open in the same window.

 

Or you can use _blank to open a new window each time.

 

  <a href="nextpage.htm" target="_blank">Click here for next page</a>

 

  <a href="lastpage.htm" target="_blank">Click here for last page</a>

 

The nextpage and lastpage pages will each open in a new window.

 

 

HTH

 

Mark

 

 

 

----- Original Message -----

From: jiwilliams@c...

Sent: Friday, May 17, 2002 5:03 PM

To: HTML Code Clinic

Subject: [html_code_clinic] Opening a new window

 

Hi all,
  from a hyperlink, how does one open the link up in a new window?

Jimmy

---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20

--- Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20 Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20 Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20 --- 

  _____  

Get more from the Web. FREE MSN Explorer download :
http://explorer.msn.com





  Return to Index