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:
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:
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.
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