Viewing 16 posts - 1 through 16 (of 16 total)
  • URL links in the forum – a question (and a suggestion maybe)
  • psychle
    Free Member

    Is it possible to get links set up so that when you click on them it automatically opens a new tab/window (like they do on Retrobike for example)? I know it’s not hard to right click and open in a new tab, but it’d be schweet with you could just click on a link and have it do this rather than going straight to the url in the window/tab you’re already in (ie. leaves STW forum)…

    Am I the only one who finds this a little niggling & annoying? 😳

    druidh
    Free Member

    A vote from me to leave it the way it is – thanks.

    Window proliferation? Nein Danke!

    WorldClassAccident
    Free Member

    I would like it like the OP

    have to hold CTRL down and click at the moment

    psychle
    Free Member

    well, it’s more tab proliferation if you’re using the latest browsers…

    psychle
    Free Member

    ah, hold CTRL down, didn’t know about that trick! cheers 🙂

    donsimon
    Free Member

    What about having choice? Those who want a new tab can right click, those who don’t, don’t.

    simonfbarnes
    Free Member

    that’s how it used to work, pre-hack, though it doesn’t conform to normal webpage usage, which is why I suppose it was changed. In Firefox it should be possible to write a greasemonkey script to modify all the links…

    retro83
    Free Member

    on most browsers you can middle click to open in a new window or tab

    tails
    Free Member

    How much time are you pending on forums???? 😮

    simonfbarnes
    Free Member

    here’s the Javascript required:
    foo=document.getElementsByTagName(‘a’)
    for (x in foo) if (foo[x].host != “www.singletrackworld.com”) foo[x].target=’_blank’

    Kahurangi
    Full Member

    firefox – middle click to open in new tab.

    internet explorer – middle click to open in new tab.

    non?

    druidh
    Free Member

    Chrome – middle click to open in new tab

    psychle
    Free Member

    didn’t know that either! so, no need to change anything, just a need to educate meself betterer re. internet and mouse usage! 😳

    simonfbarnes
    Free Member

    I changed by greasemonkey script slightly:
    foo=document.getElementsByTagName(‘a’)
    len = foo.length
    for ( x = 0; x < len; x ++ ) if (foo[x].host != “www.singletrackworld.com”) foo[x].target=’_blank’

    and it works fine making all external links open in a new tab

    wwaswas
    Full Member

    Just used middle button for the first time (possibly ever)- it works as advertised, doesn’t it 🙂

    ebygomm
    Free Member

    Well, I don’t have a middle button, so have to right click then choose an option.

    Why is defaulting to open in the same tab letting the user decide any more than automatically open in a new tab? You can override both options. I know technically it’s a web standards thing but can’t help feeling it’s not so relevant now tabs are around

Viewing 16 posts - 1 through 16 (of 16 total)

The topic ‘URL links in the forum – a question (and a suggestion maybe)’ is closed to new replies.