S
S
Serhiom2017-07-01 12:05:56
css
Serhiom, 2017-07-01 12:05:56

How to disable pop-up links for a site in the browser?

In any browser, when you hover over a link, the address of this link pops up at the bottom left (see picture).
Is there a way to somehow disable them for my site? (they just cover part of the interface and look ugly)
591fa80c9dfe4f8bac8d30786a38906e.jpg

Answer the question

In order to leave comments, you need to log in

4 answer(s)
S
Stalker_RED, 2017-07-01
@Stalker_RED

No. Luckily, this is only configurable from the browser side, not from the site side.

A
Andrey Fedorov, 2017-07-01
@aliencash

The easiest option is links to js, ​​like

<a onclick="location='http://site.com';">ссылка</a>
.
Just keep in mind that this approach has a bunch of negative effects.

A
Arris, 2017-07-01
@Arris

If my memory serves me right, once upon a time this behavior could be set using

window.status = '';

// к примеру
<a href="x.html" onmouseover="window.status='YYYYY'">Xxxxxxxxxxxxxxxxxx</a>

But, as they write here: https://www.w3schools.com/jsref/prop_win_status.asp , this has not worked in modern browsers for a long time (already canceled in IE7).
Therefore, the option remains from Andrey Fedorov

S
Serhiom, 2017-07-01
@Serhiom

Exploding , The fact is that I have an html5 application and any link inside the application always calls this window.
Here, for example, this problem is solved https://www.fotor.com/h5-app.html#/editor/basic

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question