How can I hide URL from displaying when mouse hovers on a hyperlink?
<a href="url">Hyperlink</a>
How can I hide URL from displaying in browser’s bottom status bar when mouse hovers?
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.
Don’t put the URL in the
href(or keep ithref="#") and attach a JavaScript function to theonclickevent which puts the actual link in theaelement. This way you won’t see the actual URL when hovering over the link but the link will be inserted when the user actually clicks.