Is it possible to hide the link bar displayed in the bottom corner of the browsers?

0

I wonder if there is any way to hide the link bar displayed in the bottom left (or right corner of the browser) browser. Is it possible?

<a href="http://www.google.com">Google</a>

Sample image:

    
asked by anonymous 16.03.2015 / 00:31

2 answers

2

This link bar exists as a security feature and was invented to mitigate issues arising from phishing . If it could be hidden or disabled, then all sites that promote phishing would disable it, and as a result such a feature would lose the sense of being. For this reason, this bar was designed in such a way that it can not be removed or deactivated, so there is no means of hiding it.

    
16.03.2015 / 00:39
2

This can not be done just by using pure HTML, but this can be done using JavaScript as follows:

<span id="anchorID" >Ir para a página</span>
$("#anchorID").click(function() {
    window.open(
    'http://www.google.com',
    '_blank' // <- Isto faz o link ser aberto numa nova janela.
    );
});
#anchorID{cursor:pointer;}

Here's an example online at jsFiddle - link

    
14.06.2015 / 23:22