<a href="javascript:void(0)" id="loginlink">login</a>
I've seen such hrefs many times, but I don't know what exactly that means.
|
1
|
I've seen such
|
|||
|
|
|
|
Explanation is provided here. The reason you'd want to do this with the href of a link is, normally a javascript: url will redirect the browser to a plain text version of the result of evaluating that javascript. That is, unless the result is undefined, then the browser stays on the same page. void(0) is just the smallest script possible that evaluates as undefined. |
||||||||||||||||
|
|
|
In addition to the technical answer, javascript:void means the author is Doing It Wrong. There is no good reason ever to use a ‘javascript:’ pseudo-URL*. In practice it will cause confusion or errors should anyone try things like ‘bookmark link’, ‘open link in a new tab’, and so on. This happens quite a lot now people have got used to middle-click-for-new-tab: it looks like a link, you want to read it in a new tab, but it turns out to be not a real link at all, and gives odd results when middle-clicked. ‹a href="#"› is a common alternative which might arguably be less bad. However you must remember to ‘return false’ from your onclick event handler to prevent the link being followed and scrolling up to the top of the page. In some cases there may be an actual useful place to point the link to. For example if you have a control you can click on that opens up a previously-hidden ‹div id="foo"›, it makes some sense to use ‹a href="#foo"› to link to it. Or if there is a non-JavaScript way of doing the same thing (for example, ‘thispage.php?show=foo’ that sets foo visible to begin with), you can link to that. Otherwise, if a link points only to some script, it is not really a link and should not be marked up as such. The usual approach would be to add the onclick to a ‹span›, ‹div›, or an ‹a› without an href and style it in some way to make it clear you can click on it. This is what StackOverflow does: see for example the ‘add comment’ link at the top. The disadvantage of this is that you lose keyboard control, since you can't tab onto a span/div/bare-a. Whether this is actually a disadvantage depends on what sort of action the element is intended to take. If you want an element that isn't a link but which can be keyboard-focused, you want ‹button type="button"› (or ‹input type="button" is just as good, for simple textual contents). You can always use CSS to restyle it so it looks more like a link than a button, if you want. But since it behaves like a button, that's how really you should mark it up. (*: in site authoring, anyway. Obviously they are useful for bookmarklets. ‘javascript:’ pseudo-URLs are a conceptual bizarreness: a locator that doesn't point to a location, but instead calls active code inside the current location. They have caused massive security problems for both browsers and webapps, and should never have been invented. Thank you Netscape, you idiots.) |
|||
|
|
|
|
There is a HUGE difference in the behaviour of "#" vs javascript:void "#" scrolls you to the TOP of the page while "javascript:void(0);" does not. This is very important if you are coding dynamic pages. the user does not want to go back to top just because he clicked a link on the page. |
||||
|
|
|
You should always have an href on your a tags. Calling a Javascript function that returns 'undefined' will do just fine. So will linking to '#'. Anchor tags in IE6 without an href do not get the a:hover style applied. Yes it is terrible and a minor crime against humanity, but then again so is IE6 in general. Hope this helps. EDIT: IE6 is actually a major crime against humanity |
||
|
|
|
|
It means it'll do nothing. It's an attempt to have the link not 'navigate' anywhere. But it's not the right way. You should actually just 'return false' on the onclick event, like so:
Typically it's used if the link is doing some 'javascript-y' thing. Like posting an ajax from, or swapping an image, or whatever. In that case you just make whatever function is being called return false. To make your website completely awesome, however, generally you'll include a link that does the same action, if the person browsing it chooses not to run JavaScript.
|
||||||||||||||||||||
|