Live data from Hacker News

Ask HN: Please AWS team, make links work with control-click

news.ycombinator.com

1–10 of 38 posts

Ask HN: Please AWS team, make links work with control-click

#1
Hey AWS team,

If you are reading this, please please make CTRL-click to open a new page. It's really frustrating to try to open a link in a new page just to see that the page navigated, and then if you click the back button, you end up nowhere near where you were before.

I really love the new UI, it's really good! and with this feature we could be more productive and use AWS even more!!

Re: Ask HN: Please AWS team, make links work with control-click

#3
I've seen this on a few sites, my suspicion is that it's caused by some kind of marketing analytics JavaScript that attempts to track clicks on outbound links by intercepting the click, logging the analytic event and then navigating to the destination using location.href=something.

Not sure what's causing it here - could be Marketo Munchkin perhaps?

Re: Ask HN: Please AWS team, make links work with control-click

#7
post #3

I've seen this on a few sites, my suspicion is that it's caused by some kind of marketing analytics JavaScript that attempts to track clicks on outbound links by intercepting the click, logging the analytic event and then navigating to the destination using location.href=something. Not sure what's causing it here - could be Marketo Munchkin perhaps?

I believe it's that javascript apps built without due care and consideration don't use true links, they use onclick handlers.

Re: Ask HN: Please AWS team, make links work with control-click

#9
post #3

I've seen this on a few sites, my suspicion is that it's caused by some kind of marketing analytics JavaScript that attempts to track clicks on outbound links by intercepting the click, logging the analytic event and then navigating to the destination using location.href=something. Not sure what's causing it here - could be Marketo Munchkin perhaps?

It's probably more just that sites are using SPA frameworks that use onClicks in JS instead of hrefs in HTML. Can't control click a link that isn't a link, it's a span pretending to be a link.
Post reply on HN