Hello How to make the "< a href" tag refer to nothing?
because I use jQuery
I need to make some anchor taks refer to nothing
I usually write it like this
<a href="#">link</a>
however this refer to the top of the page!
|
|
Hello How to make the "< a href" tag refer to nothing? because I use jQuery I need to make some anchor taks refer to nothing I usually write it like this
however this refer to the top of the page!
|
||||||||||||
|
|
|
If you don't want to have it point to anything, you probably shouldn't be using the If you want something to look like a link but not act like a link, it's best to use the appropriate element (such as
Also, given that you tagged this question "jquery", I'm assuming that you want to attach a click event hander. If so, just do the same thing as above and then use something like the following JavaScript:
|
||||||||||||||||
|
|
|
There are a few less than perfect solutions: 1. Link to a fake anchor
Problem: clicking the link jumps back to the top of the page 2. Using a tag other than 'a' Use a span tag and use the jquery to handle the click Problem: breaks keyboard navigation, have to manually change the hover cursor 3. Link to a javascript void function
Problem: breaks when linking images in IE Solution Since these all have their problems, the solution I've settled on is to link to a fake anchor, and then return false from the onClick method:
Not the most concise of solutions, but it solves all the problems with the above methods. |
|||
|
|
|
|
I think you can try
The only catch I see over here is high level browser security may prompt on executing javascript. Though this is one of the easier way than
this should be used sparingly Read this article for some pointers http://blog.reindel.com/2006/08/11/a-hrefjavascriptvoid0-avoid-the-void/ |
||
|
|
|
To make it do nothing at all, use this:
|
|||
|
|
|
|
The correct way to handle this is to "break" the link with jQuery when you handle the link HTML
JS
Those final two calls stop the browser interpreting the click. |
||||
|
|
|
What do you mean by nothing?
or
|
||
|
|
|
This will do the trick. If you don't mind using onclick handlers.
Otherwise you can do something like:
And have some JS in your header that looks something like:
|
||||
|