When you hover over a hyperlink you see in the corner of your browser the url you’re gonig to. I’m using javascript to navigate through my tabs div. When I hover over the tab I see the url. I would like to hide this. Is this possible?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you don’t use the “href” attribute, the link won’t show up.
Simply do this:
<a id="tab1">Tab 1</a>$('#tab1').click(function(event) {switchTabs();
});
This will register a click event (using jQuery) on the link without displaying any URL to the user. This is the proper way for handling links that don’t redirect the user.