How to enable or disable an anchor using jQuery?
|
|
To prevent an anchor from following the specified
See: http://docs.jquery.com/Events/jQuery.Event#event.preventDefault.28.29 Also see this previous question on SO: |
|||||||
|
|
The app I'm currently working on does it with a CSS style in combination with javascript.
Then whenever I want to disable a link I call
Then, in the click handler for 'thelink' a tag I always run a check first thing
|
|||||||||||
|
|
I found an answer that I like much better here Looks like this:
Enabling would involve setting the href attribute
This gives you the appearance that the anchor element becomes normal text, and vice versa. |
|||||||
|
|
|
I think a nicer solution is to set disabled data attribute on and anchor an check for it on click. This way we can disable temporarily an anchor until e.g. the javascript is finished with ajax call or some calculations. If we do not disable it, then we can quickly click it a few times, which is undesirable...
I made a jsfiddle example: http://jsfiddle.net/wgZ59/76/ |
|||
|
|
|
It's as simple as return false; ex.
or
|
||||
|
|
|
If you are trying to block all interaction with the page you might want to look at the jQuery BlockUI Plugin |
|||
|
|
|
You never really specified how you wanted them disabled, or what would cause the disabling. First, you want to figure out how to set the value to disabled, for that you would use JQuery's Attribute Functions, and have that function happen on an event, like a click, or the loading of the document. |
|||
|
|
If this method is called, the default action of the event will not be triggered. |
||||
|
|
|
For situations where you must put text or html content within an anchor tag, but you simply don't want any action to be taken at all when that element is clicked (like when you want a paginator link to be in the disabled state because it's the current page), simply cut out the href. ;)
The answer by @michael-meadows tipped me off to this, but his was still addressing scenarios where you still have to / are working with jQuery/JS. In this case, if you have control over writing the html itself, simply x-ing the href tag is all you need to do, so the solution is a pure HTML one! Other solutions without jQuery finagling which keep the href require you to put a # in the href, but that causes the page to bounce to the top, and you just want it to be plain old disabled. Or leaving it empty, but depending on browser, that still does stuff like jump to the top, and, it is invalid HTML according to the IDEs. But apparently an Lastly, you might say: Okay, why not just dump the a tag altogether than? Because often you can't, the http://twitter.github.io/bootstrap/components.html#pagination |
|||
|
|

