The use of _blank...

This is a discussion on "The use of _blank..." within the Web Page Design section. This forum, and the thread "The use of _blank... are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 26th, 2007, 16:30
1840dsgn's Avatar
SuperMember

SuperMember
Join Date: Jun 2007
Location: Canterbury
Age: 19
Posts: 720
Thanks: 0
Thanked 0 Times in 0 Posts
The use of _blank...

I just wanted to get everyones views on this matter.

Obviously target="_blank" has been scraped from the web standards and will now bring up a validation error when used.

There is a JS workaround using the rel="" attribute which works fine and brings up no errors because the validator doesn't know what happens to the code after it is initially processed.

My question is should we be using this? After reading a few articles around the Internet I am under the impression we shouldn't. Obviously if it has been scraped from the standards its for a reason - making the users choice of how they want to open the link is limiting their choice and therefore against accessibility...

But for example earlier I wrote a tutorial on favicons, in which I have a link to a favicon generator, now this is the sort of thing where I would have thought would be correct to use _blank. The user will want to go to the site, generate their icon, and then come back to my tutorial and continue through it, rather than navigate away from my page - generate their icon - have to navigate back to my page to carry on.

I can understand that it is good practice not to use it, so you don't clutter the users taskbar/tab bar with windows but in my example what do you reckon?

I'd love to hear eveyones views on this as I plan on possibly writing a blog article on the matter.

Mike
Reply With Quote

  #2 (permalink)  
Old Jul 26th, 2007, 16:43
SuperMember

SuperMember
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The use of _blank...

Quote:
Originally Posted by 1840dsgn View Post
There is a JS workaround using the rel="" attribute which works fine and brings up no errors because the validator doesn't know what happens to the code after it is initially processed.

My question is should we be using this?
No, we shouldn't.

Quote:
...The user will want to go to the site, generate their icon, and then come back to my tutorial and continue through it, rather than navigate away from my page - generate their icon - have to navigate back to my page to carry on.
Don't assume that you know how your users want to navigate. When you launch a new browser window without their expecting it, they may become disoriented. The back button won't work, and they wonder what happened to your page!

Users can choose to open links in a new window if they want to. Don't force it on them. It's annoying.

With tabbed browsing becoming commonplace, this is largely redundant anyway. The user can open the link in a new tab, then have the article and the icon-generating-page side-by-side.
Reply With Quote
  #3 (permalink)  
Old Jul 26th, 2007, 20:54
SuperMember

SuperMember
Join Date: May 2006
Location: North West, UK
Age: 22
Posts: 1,173
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The use of _blank...

A user who becomes disoriented by a new window opening up will not necessarily know how to open links in new windows. I think you are making assumptions about the users knowledge of web navigation. If I wanted to open a popup I would use JS as it is behaviour but most often as, mike said, it isn't necessary. I do believe there are real usability advantages to be gained by using popup windows but only in certain circumstances.

We cannot make this decision for you, it comes down to your personal opinion. In your situation I would rewrite the tutorial. Introduce the idea, send them off to make the icon and then tell them to come back to complete the tutorial. But that is just me.

Pete.

Last edited by pa007; Jul 26th, 2007 at 20:58.
Reply With Quote
  #4 (permalink)  
Old Jul 26th, 2007, 21:06
JustinStudios's Avatar
SuperMember

SuperMember
Join Date: Mar 2007
Location: USA
Posts: 406
Blog Entries: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to JustinStudios
Re: The use of _blank...

Learn Ajax then you won't need to worry about Pop-up windows. But I agree with MikeHopley on this matter. Even my mother knows how to right click and "Open Link in New Window" and she doesn't even know how to type a Url in an address bar. She goes to MSN.com and types it in the search engine then selects it. Thats the only way she knows how to do it. So, if my mom can figure it out I believe most people know how to do this.

As far as pop-ups go, if something pops up on my page its blocked and I never see it. I hate pop-ups and don't allow them.
Reply With Quote
  #5 (permalink)  
Old Jul 26th, 2007, 21:31
1840dsgn's Avatar
SuperMember

SuperMember
Join Date: Jun 2007
Location: Canterbury
Age: 19
Posts: 720
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The use of _blank...

Ok Cool.

Thanks all of you for your replies. I think I understand a bit more but I also agree with Pete's point that they might not know how to open in new window. My mum certainly doesn't! She can browse the net alrite tho.
Reply With Quote
  #6 (permalink)  
Old Jul 26th, 2007, 21:44
SuperMember

SuperMember
Join Date: May 2006
Location: North West, UK
Age: 22
Posts: 1,173
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The use of _blank...

One of the most important principles of usability is to not make assumptions.

Pete.
Reply With Quote
  #7 (permalink)  
Old Jul 26th, 2007, 22:21
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
Re: The use of _blank...

To be honest my personal opinion is to use a new window only if it makes sense to do so.... if it doesnt, then either dont do it, or inform the user that a new window will be used.
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
Reply With Quote
  #8 (permalink)  
Old Jul 27th, 2007, 00:42
JustinStudios's Avatar
SuperMember

SuperMember
Join Date: Mar 2007
Location: USA
Posts: 406
Blog Entries: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to JustinStudios
Re: The use of _blank...

Yeah, I agree with Rob, at least tell them "Hey, I'm opening up a new window" because I don't allow any pop ups whatsoever on my browser. I've never seen a pop-up that was worth my time, so I block every last one of them.

Quote:
Originally Posted by Rob View Post
To be honest my personal opinion is to use a new window only if it makes sense to do so.... if it doesnt, then either dont do it, or inform the user that a new window will be used.
Reply With Quote
  #9 (permalink)  
Old Jul 27th, 2007, 00:46
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
Re: The use of _blank...

There are ways around pop up blockers.... but then, you should still use common sense and keep informing the user a priority of mind!
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
Reply With Quote
  #10 (permalink)  
Old Jul 27th, 2007, 10:13
New Member
Join Date: Jul 2007
Location: Hanoi, vietnam
Age: 28
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to thanhnguyen
Re: The use of _blank...

should not use javascript pop up, most of them will be blocked, _blank is not javasript and will not be blocked by Windows or google, yahoo toolbar.

Thanh Nguyen
- Danh bạ web,danh ba web - Thư mục web, danh ba web, danh bạ web
Reply With Quote
  #11 (permalink)  
Old Jul 27th, 2007, 18:17
1840dsgn's Avatar
SuperMember

SuperMember
Join Date: Jun 2007
Location: Canterbury
Age: 19
Posts: 720
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The use of _blank...

Quote:
_blank is not javasript and will not be blocked by Windows or google, yahoo toolbar.
No but it is invalid.
Reply With Quote
  #12 (permalink)  
Old Jul 27th, 2007, 23:40
SuperMember

SuperMember
Join Date: May 2006
Location: North West, UK
Age: 22
Posts: 1,173
Thanks: 0
Thanked 0 Times in 0 Posts
Re: The use of _blank...

And it is behaviour which should separated from content just as presentation should be.

Pete.
Reply With Quote
Reply

Tags
external pop up

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Target _blank Jack Franklin Web Page Design 12 Oct 12th, 2007 09:55


All times are GMT. The time now is 02:31.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43