PDA

View Full Version : launch new page


sbrownhill
11-10-2002, 09:34 PM
HiYa,

I would like to open a new page from within the 'cell' of a table that has an image, as below:

<td width="100%" valign="bottom" align="left"><a href="http://www.ninemsn.com.au"><img src="img/example.gif" width="90" height="90" border="0"></a>

So I am guess I need some html inside the cell to achieve this ?

Is it possible ?

Crawdaddy79
11-10-2002, 10:20 PM
Um... Yeah.

The code you have should work.

Unless you are talking about opening in a new browser window, in which you would have to add: target="_blank" inside the <a href> somewhere..

sbrownhill
11-11-2002, 12:52 AM
That was it !!

Thank you kindly...

dreuby
11-11-2002, 08:53 AM
I've always used target="_blank", but I've seen references to "new" - is there any difference between "blank" and "new"?

BoR|S
11-11-2002, 12:02 PM
An ISP I used to work for, used on their pages the "new_win" identyfier... seems like it's more browser dependable since my Mozilla won't recogzine it...

Flogg
11-11-2002, 11:08 PM
Only for certain browsers if you enter something like "new" or "gohere" as a target it will open it in a new window unless there is a frame called that. It's stupid but no one said there is such thing as the perfect browser!

Zero Angel
11-12-2002, 12:02 AM
If you don't name you target properly (ie: "foo" instead of "_blank"), the window that opens will be called "new", if another link has the target "foo", it will open up in the previously opened window called "foo".

"_blank" is the proper target if you want all links to open up as a new window.