HighDots Forums  

Open page in new window as default?

alt.html alt.html


Discuss Open page in new window as default? in the alt.html forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Deaana
 
Posts: n/a

Default Open page in new window as default? - 10-03-2003 , 09:56 AM






Hi.

I am so tired of putting TARGET="NEW" in my links; is there any way to set
all links to be opened in a new window as default so I don't need to?

Thanks,
Dea



Reply With Quote
  #2  
Old   
Hywel Jenkins
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 12:46 PM






In article <Zdffb.226$Cp5.40 (AT) news2 (DOT) central.cox.net>, noober (AT) nospam (DOT) com
says...
Quote:
Hi.

I am so tired of putting TARGET="NEW" in my links; is there any way to set
all links to be opened in a new window as default so I don't need to?
Why are you targeting a frame called "NEW" to open a link in a new
window? You should be using "_blank".

--
Hywel I do not eat quiche
http://hyweljenkins.co.uk/
http://hyweljenkins.co.uk/mfaq.php


Reply With Quote
  #3  
Old   
altamir
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 01:26 PM



On Fri, 03 Oct 2003 13:56:09 GMT, Deaana <noober (AT) nospam (DOT) com> wrote:

Quote:
Hi.

I am so tired of putting TARGET="NEW" in my links; is there any way to
set
all links to be opened in a new window as default so I don't need to?

In HEAD section of your document place:
<base href="new" /> or <base href="_blank" />

See http://www.w3.org/TR/html401/struct/...html#edef-BASE for more
details.

altamir






Reply With Quote
  #4  
Old   
DU
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 05:10 PM



Deaana wrote:

Quote:
Hi.

I am so tired of putting TARGET="NEW" in my links; is there any way to set
all links to be opened in a new window as default so I don't need to?

Thanks,
Dea


It would be in your best interest to elaborate on what exactly is your
webpage situation, context (a clear explanation of what is the real
issue) and what you really want exactly with your webpage/website.

Target="NEW" will open links in a window identified with the name "NEW"
all the time: the first one will be created because it does not exist.
If the user closes it, then clicking another link with target="NEW" will
re-create it and open it (so the end result is that it will usually
behave like a target="_blank").

Having a webpage [re-]creating and [re-]opening new additional secondary
windows is definitively not recommendable. Lots of serious studies in
usability have proven this beyond a single doubt. Like Brucie answered
you, the best attitude is to code in a way that it lets the users decide
for themselves and by themselves. Users can even prevent a page with
links coded with target="_blank" from opening new windows in
Mozilla-based browsers (also proxomitron users).
Best is to have a page coded so that only at most 1 single secondary
popup window is in use and it will be re-used if the user clicks another
link.

More explanations (and references to usability studies):
Popup windows and Netscape 7: interactive demos
http://www10.brinkster.com/doctorunc...Netscape7.html

What I preach and practise myself:

http://www10.brinkster.com/doctorunc...pera7Bugs.html

http://www10.brinkster.com/doctorunc...Thumbnail.html

DU
--
Javascript and Browser bugs:
http://www10.brinkster.com/doctorunclear/
- Resources, help and tips for Netscape 7.x users and Composer
- Interactive demos on Popup windows, music (audio/midi) in Netscape 7.x
http://www10.brinkster.com/doctorunc...e7Section.html



Reply With Quote
  #5  
Old   
EightNineThree
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 06:43 PM




"Deaana" <noober (AT) nospam (DOT) com> wrote

Quote:
Hi.

I am so tired of putting TARGET="NEW" in my links; is there any way to set
all links to be opened in a new window as default so I don't need to?

How about not fucking with your visitor's computer and letting them open new
windows when they want them?


--
Karl Core

At times one remains faithful to a cause only because its opponents do not
cease to be insipid.
Friedrich Nietzsche

eightninethree AT eightninethree.com




Reply With Quote
  #6  
Old   
William Tasso
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 07:05 PM



EightNineThree wrote:
Quote:
"Deaana" <noober (AT) nospam (DOT) com> wrote in message
news:Zdffb.226$Cp5.40 (AT) news2 (DOT) central.cox.net...
I am so tired of putting TARGET="NEW" in my links; is there any way
to set all links to be opened in a new window as default so I don't
need to?

How about not fucking with your visitor's computer and letting them
open new windows when they want them?
had a stressful day then Karl?

--
William Tasso - http://WilliamTasso.com




Reply With Quote
  #7  
Old   
EightNineThree
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 08:38 PM




"William Tasso" <news27 (AT) tbdata (DOT) com> wrote

Quote:
EightNineThree wrote:
"Deaana" <noober (AT) nospam (DOT) com> wrote in message
news:Zdffb.226$Cp5.40 (AT) news2 (DOT) central.cox.net...
I am so tired of putting TARGET="NEW" in my links; is there any way
to set all links to be opened in a new window as default so I don't
need to?

How about not fucking with your visitor's computer and letting them
open new windows when they want them?

had a stressful day then Karl?

Yes. ;-)
Somehow days that have nothing on the schedule always evolve into the most
chaotic.
This one spun out of control at 9am.


--
Karl Core

At times one remains faithful to a cause only because its opponents do not
cease to be insipid.
Friedrich Nietzsche

eightninethree AT eightninethree.com




Reply With Quote
  #8  
Old   
Deaana
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 09:02 PM



Thank you, this is exactly what I needed.

Dea

FYI, this page is actually a blog, new links would be added and removed
alot, and so I felt the need to open them in new windows since most of them
would be to complete, utter, nothing to do with my page, pages.

Thank you all for the wonderful welcoming comments. I'll be sure and come
back when i need help again. =P.


"altamir" <altamir (AT) op (DOT) pl> wrote

Quote:
On Fri, 03 Oct 2003 13:56:09 GMT, Deaana <noober (AT) nospam (DOT) com> wrote:

Hi.

I am so tired of putting TARGET="NEW" in my links; is there any way to
set
all links to be opened in a new window as default so I don't need to?


In HEAD section of your document place:
base href="new" /> or <base href="_blank" /

See http://www.w3.org/TR/html401/struct/...html#edef-BASE for more
details.

altamir







Reply With Quote
  #9  
Old   
Deaana
 
Posts: n/a

Default Re: Open page in new window as default? - 10-03-2003 , 09:16 PM



Actually, the code turned out to be <base target="_blank"> as what I needed,
but you put me on the right track, thank you!

Dea


"Deaana" <noober (AT) nospam (DOT) com> wrote

Quote:
Thank you, this is exactly what I needed.

Dea

FYI, this page is actually a blog, new links would be added and removed
alot, and so I felt the need to open them in new windows since most of
them
would be to complete, utter, nothing to do with my page, pages.

Thank you all for the wonderful welcoming comments. I'll be sure and come
back when i need help again. =P.


"altamir" <altamir (AT) op (DOT) pl> wrote in message
newsprwg9dndmjmrg37 (AT) news (DOT) onet.pl...
On Fri, 03 Oct 2003 13:56:09 GMT, Deaana <noober (AT) nospam (DOT) com> wrote:

Hi.

I am so tired of putting TARGET="NEW" in my links; is there any way to
set
all links to be opened in a new window as default so I don't need to?


In HEAD section of your document place:
base href="new" /> or <base href="_blank" /

See http://www.w3.org/TR/html401/struct/...html#edef-BASE for more
details.

altamir









Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.