Older browsers had something like window.status = "";
where you could send messages to the status bar, and likewise effectively hide normal messages.
This is no longer supported on most browsers.
So, if you use a hyperlink - or more specifically an anchor element <a>
- with an href
attribute, there's no getting around the status bar.
If you check out the HTML for SO, you'll see the vote up "link" isn't a link at all but an image with some javascript event handlers assigned to the onclick
event.
So why is that the cursor turns into that pointed finger when you mouse over the "vote up"? That's because of the CSS cursor
property.
.vote img {
cursor:pointer;
}
That CSS comes out of the 'all.css' stylesheet.