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.
