UPDATE
I finally found a simple and easy way:
<font onclick="window.open('https://www.google.pt/', '_self');" style="background:0;border:0;outline:0">Link
I had to use a tag to add the event to the text so I used font
because it doesn't modify anything. P.S.: This doesn't work on JS Fiddle as, for some reason, it doesn't open the link (it stays blank).
Probably duplicated but I couldn't find it so, is there any way to prevent the URL of a link to show when I move my mouse over it? Code with image of the URL:
<a href="https://www.google.pt/">Google</a>
<br>
When I over the mouse on the link, it shows the URL on the bottom left corner.
<br>
<img src="http://i.imgur.com/pq3ket7.png">
<br>
Is there any way to prevent it?
I'm using Chrome.