Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say I have a sentence with a number of words and I want to create a link from more than one word in this sentence that are not next to each other, so that when hovering over one of the words, the hover effect will also be applied to the other words that are linked to the same address.

Example: I have a [link]dog[/link] called [link]fluffy[/link].

The words "dog" and "Fluffy" would be linked to the exact same page, and if hovering over "dog", "Fluffy" would also be highlighted.

Can I in some way accomplish this using only HTML (and CSS)? If not, a solution with (preferably pure) JavaScript is fine too. I want a solution that works even if I have several different kinds of paired links (although they don't necessarily have to be pairs) within one sentence, and even if I have hundreds of sentences with this kind of linking.

share|improve this question

migrated from webmasters.stackexchange.com Feb 15 at 10:36

2 Answers

up vote 1 down vote accepted

jQuery solution: http://jsfiddle.net/JhjuT/

Grumpy <a class="link" href="#">wizards</a> make toxic brew for the evil <a class="link" href="#">Queen</a> and Jack.

$(".link").hover(
    function () {
        $(".link").addClass("linkhover");
    },
    function () {
        $(".link").removeClass("linkhover");
    }
);

.linkhover {
    color: red;
}
share|improve this answer
Thanks, though I'm first and foremost looking for a pure JavaScript solution. Could it be done along the same lines? – 5th Feb 15 at 12:36
Yeah, you could use a pure JavaScript solution I'm sure. I'm not very good at JavaSCript so I was happy when jQuery came along as it let me do lots of things that I previously pulled my hair out over. – Billy Moat Feb 15 at 12:38
I might go over to the jQuery camp eventually too, but I'll wait until I have experienced first-hand the reasons why it makes things better :) At the moment I'm working on quite small project, so I'll try to stay with the bare minimum of technologies. Thanks for your answer anyway! – 5th Feb 15 at 13:27

I think the javascript solution is your best bet. You can almost do it with CSS.

<html>
<head>
<style>
.sentence:hover .word {background-color:red;}
</style>
<body>
<span class=sentence>I have a <span class=word>dog</span> called <span class=word>fluffy</span>.</span>
</body>
</html>

But in this case the style is applied to both words when you hover anywhere over the sentence.

share|improve this answer
Each other word will have different links, so it won't quite do it. Thanks anyway! – 5th Feb 15 at 12:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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