When running the below code, it fails to display the text I wrote. Instead, it displays in the status bar the URI of the link. Why is this happening?
<a href="link" onmouseover="self.status='your text';" onmouseout="self.status='';">link here</a>
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.
window.statusisn’t a standard property. It has been eliminated for security reason. You can’t do that on modern browsers (including IE9).You’ll have to find another solution, like for example making a small div at the bottom left corner :