vote up 1 vote down star
1

Is target=_blank the best way or is there something else that has replaced it?

flag

62% accept rate
Don't. The user can open a new tab if wanted – James Deville Nov 7 at 3:31
Any progress on this Josh Gibson? Did my answer answer your question? If yes please consider accepting it as correct answer. – jitter Dec 5 at 15:57

4 Answers

vote up 0 vote down

Remember HTML is only meant for content, not behaviour. Hence we have CSS for layout and JS for behaviour. For that reason you should use JS for the open in a new window functionality. This is why XHTML strict doesn't allow target="_blank".

link|flag
vote up 0 vote down

In this article at 456 Berea Street, Roger Johansson recommends using JavaScript instead of the _target attribute, as the _target attribute is invalid in strict HTML/XHTML. However, he also recommends you avoid making links open in new windows as much as possible.

link|flag
Right, use the option that could be disabled when target is consistently interpreted by browsers... Yet another reason using strict isn't a great idea. – OMG Ponies Nov 7 at 4:34
vote up 1 vote down

It disappeared in XHTML Strict, but it would appear that target="_blank" will remain in HTML5, but browser makers will be encouraged to allow users to disable the behaviour (and default it to disabled).

link|flag
vote up 4 vote down

This IMO is still the best way to do it. And will work with any sane browser even when everything else like javascript and the like fails. Even as I seem to recall that the target attribute at some time was removed from one or the other XHTML standard (I think XHTML Strict).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.