I would like to understand why now the URL doesn't open a new window.
And, if it's possible to define a URL BBcode opening a new browser window.
Thanks.
jumborex wrote: I would like to understand why now the URL doesn't open a new window.
jumborex wrote: And, if it's possible to define a URL BBcode opening a new browser window.
Thanks.
Jakob Nielsen wrote: Opening up new browser windows is like a vacuum cleaner sales person who starts a visit by emptying an ash tray on the customer's carpet. Don't pollute my screen with any more windows, thanks (particularly since current operating systems have miserable window management). If I want a new window, I will open it myself!
Designers open new browser windows on the theory that it keeps users on their site. But even disregarding the user-hostile message implied in taking over the user's machine, the strategy is self-defeating since it disables the Back button which is the normal way users return to previous sites. Users often don't notice that a new window has opened, especially if they are using a small monitor where the windows are maximized to fill up the screen. So a user who tries to return to the origin will be confused by a grayed out Back button.
Yes it is, with only editing one line of a template. But we strongly advise against it.
This article ist outdated. Opening new browser windows was mildly annoying back then: You can close the old window and use the new one.dhn wrote: Read this article on usability.
These are not "desingers nonsendical theories" (sic!). They are facts proven by usability experts in proper usability studies.gspark wrote: I tend to disagree with some designers nonsensical theories![]()
Users only prefer this option until they learn how to open a link in a new window or tab. When they've managed to learn this basic browsing skill, they don't want others to interfer with their window managment.gspark wrote: This comes down to user preference and most users would prefer this option, I read that link about the vaccum cleaner salesman and find it absurd in relation to allowing url to open in new window.
3247 wrote: hese are not "desingers nonsendical theories" (sic!). They are facts proven by usability experts in proper usability studies.
drewtscott wrote: [...] you also have to take into account that different sites are used for different purposes. We run a site where many of our sections are devoted to posting links to stories held on another site and reviewing them in a thread found on our site. [...] Don't get me wrong, I understand that the dev team had to make a decision and I fully support it as such. However, I will probably be one of those who overrides the decision per our forum needs.
If a new tab is what you meant, then yes. There's a "command":jumborex wrote: Note: By the way: do a HTML command exists to open a window in a new tag? I never have seen up to now! 8O
Code: Select all
<a href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a>
goreSplatter wrote: [...]That should do it. The target-Attribute also accepts these values:Code: Select all
<a href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a>
[/color]
- _self - open link in the current window/tab
- _top - when using framesets this link will kill all frames and open w/o frameset
- _parent - almost the same as _top this will only kill the parent frameset
- _blank - open in a new window