TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Fixing the UX of hyperlinks

38 pointsby jaxonduover 9 years ago

18 comments

onliover 9 years ago
The problem description makes not clear to me why this is a problem. It describes an existing solution, and there is an easier one: middle mouse button click for new tab, normal mouse button for intab load. It is always a horror when some websites try to be smart and fuck that up (looking at you, kimono – you are great but this part of your UI is not).<p>Is there something special about those specific links as well that makes the existing solution not work? If not, I doubt that indicators would help much – the specific control we have already is better than the time-consuming task of interpreting those.
评论 #10422838 未加载
zevebover 9 years ago
You don&#x27;t need a new UI: just disallow the ability of a site to open a link in a new window or tab, and leave that ability in the hands of the user, where it always belonged.
endgameover 9 years ago
How about people stop changing what links do, and let the user decide by via right click or ctrl+click&#x2F;cmd+click?
评论 #10422371 未加载
评论 #10424104 未加载
ldarbyover 9 years ago
This is a great idea, but where&#x27;s the solution to those web pages that put links in javascript that do stuff like window.open(&quot;url&quot;) that forces a new window, or do_postback(&quot;url&quot;), that prevents you choosing to open it in a new tab? They can go die in a fire.
评论 #10422239 未加载
Namrog84over 9 years ago
What bothers me so greatly are these new web &quot;apps&quot; that are trying to behave like a desktop app and have no ability to right click and open in new tab. I can think of no use case where one shouldn&#x27;t be allowed to do this. I have to use some tools that are like this and even duplicTe tab causes me to navigate thru 5 pages to get back where I was
评论 #10424656 未加载
eamover 9 years ago
I rarely ever want to open something in a new window. I do however like opening pages in new tabs so that I can finish doing what I&#x27;m doing on the current page.<p>I&#x27;m a Mac user. If I want to absolutely open a new tab when clicking on a hyperlink, I just hold down the command key and click on the link and ta-da it opens in a new tab (there&#x27;s an equivalent for this in windows). If I want to open in a new window I just hold command + shift and click on the link.
kevin_thibedeauover 9 years ago
Almost as annoying as pages filled with static content that don&#x27;t follow the HTML design principles and fail to render properly with JS blocked.
k__over 9 years ago
Does anyone really open links with left-click if they still need the current page?<p>I always middle-click.<p>It bothers me more that most web-sites don&#x27;t indicate in- and outbound links.<p>Often I get a bunch of links on news pages, which just let me hop around on their system, while the link text indicates that I get to a source of information.
gmurphyover 9 years ago
We considered indicating this in Chrome, but the problem was reliability - because JS can execute when you click, we actually can&#x27;t tell you what will happen next, and we don&#x27;t like showing unreliable UI (extensions, however, are great for this sort of thing).
steve371over 9 years ago
Personally, I use add-ons to force every link to open in a new tab. Because when I click a link, it is more like reference&#x2F;supplement reading, but I have not finished to consume the original page.
raymondghover 9 years ago
If a link is simply to reference material (wikipedia blue links &#x2F; blogs that reference earlier posts &#x2F; etc), then I&#x27;d ideally like the new page to open in a new column and either occlude or squish my content to the side. I don&#x27;t want to save those for later or leave what I&#x27;m doing; I want the contents of both, now.
评论 #10423249 未加载
thetmkayover 9 years ago
I was just thinking about this problem today: lack of information as to whether a link is an external link (different site), an internal link (same site) or anchor link (same page).<p>I cmd+click everything and inevitably have four or five tabs of the same page. It&#x27;s probably the most minor of inconveniences but the serendipity compelled me to comment.
christofoshoover 9 years ago
It&#x27;d be near if instead, these symbols were shown (but not interacted with), depending on your hover state on the link. So if you hover with control pressed, the &quot;new tab&quot; icon would be displayed. Normal hover would display the &quot;current window&quot; icon.
millstoneover 9 years ago
Safari does this already. It shows &quot;Open &lt;URL&gt; in a new tab&quot; in the status bar when clicking will open in a new tab, and same for windows. This text also changes in response to modifier keys.<p>I&#x27;m surprised that Chrome doesn&#x27;t do this!
seagreenover 9 years ago
Does anybody who keeps up with browser extensions know if there&#x27;s a way to disable any kind of ad-hoc link handling on Firefox? When I tab-click I&#x27;d like to get a new window, always:)
dcreover 9 years ago
I don&#x27;t think this is really a problem, but I upvoted because I like the thought experiment. I love the icons. I would not want them in my browser.
doucheover 9 years ago
Or, you just always use target=&quot;_blank&quot;. Problem solved. Almost never do I want to load a real hyperlink in the same tab.
评论 #10422287 未加载
christianmannover 9 years ago
This seems like a good candidate for a browser extension.