Suppose i have anchor tag
LInk
When i mouse hover the anchor page url will be shown at the bottom of the browser. I want to hide it completely. can you please help me.
Here is a jquery code that should works:
$(document).ready(function(){
$('a').click(function(){
$(this).attr({href: "#myanchor"});
});
});
this will set the href attribute AND go to your anchor at the same time