<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.
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, There is no good reason to use a
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 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 The disadvantage of this is that you lose keyboard control, since you can't tab onto a span/div/bare-a or activate it with space. Whether this is actually a disadvantage depends on what sort of action the element is intended to take. You can, with some effort, attempt to mimic the keyboard interactability by adding a If you really want an element that isn't a link but which can be activated as normal by mouse or keyboard, what you want is a (*: in site authoring, anyway. Obviously they are useful for bookmarklets. |
|||||||||||||
|
|
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.
|
|||||||||||||||||||||
|
|
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 |
|||
|
|
|
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. |
|||||||||
|
|
void is an operator that is used to return a null value so the browser will not be able to load a new page. Web browsers will try and take whatever is used as a URL and load it unless it is a javascript function that returns null. for example if we click a link like this An important thing to note about the void operator is that it requires a value and cannot be used by itself. we should use it like this |
|||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.