-1

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.

Harish
  • 1
  • 1

1 Answers1

0

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

pelomedusa
  • 47
  • 1
  • 11