I currently have the following code snippet:
<a class="button accessLink"
id="loginLink"
href="#"
data-action="Login"
data-dialog="access"
data-disabled="false"
data-entity="n/a"
data-href="/MyAccount/Access/Login"
title="Login">Login</a>
along with this jQuery function:
$('.accessLink')
.mouseover(function() {
window.status = '';
});
But despite having the mouseover event, I am still seeing
<my ip address>/#
Is there an alternative method to prevent this display at the bottom of the browser window?