Hello, how can I in css replace on link (or just text) with two different links? Example: <a href="#">Something</a> to be replaced on hover with: <a href="#">Something 2</a> | <a href="#">Something 3</a>
You want replace <a href="#">Something</a> to <a href="#">Something 2</a> | <a href="#">Something 3</a> when cursor is over <a href="#">Something</a>? It is not possible with CSS, and you can do it by JavaScript.