vote up 2 vote down star
2

Please Help how to enable or disable the anchor tag using jquery

flag

74% accept rate
Thanks for all your answer, Still it is not working so can You please make it work with document.ready function – Senthil Kumar Bhaskaran Jul 22 at 12:21
It might help if you post the snippet of code that isn't working. – Hooray Im Helping Jul 22 at 12:26
Actually My coding is in Rails and my coding is <%= foo.add_associated_link('Add email', @project.email.build) %> when it I render it into browser i can see the email but i cannot disabled it even i tried with coding such as e.preventDefault() but of no result – Senthil Kumar Bhaskaran Jul 23 at 4:28

6 Answers

vote up 13 vote down check

To prevent an anchor from following the specified HREF, I would suggest using preventDefault():

$(document).ready(function() {
    $('a.something').click(function(e) {
        e.preventDefault();
    });
});

See:

http://docs.jquery.com/Events/jQuery.Event#event.preventDefault.28.29

Also see this previous question on SO:

http://stackoverflow.com/questions/970388/jquery-disable-a-link/970413#970413

link|flag
I tried with those "attr" it is working only on form element not on Anchor tag. – Senthil Kumar Bhaskaran Jul 22 at 12:09
@senthil - preventDefault is considered the 'proper' way of doing this, see my edit (link to another Q+A) – karim79 Jul 22 at 12:21
Actually My coding is in Rails and my coding is <%= foo.add_associated_link('Add email', @project.email.build) %> when it I render it into browser i can see the email but i cannot disabled it even i tried with coding such as e.preventDefault() but of no result – Senthil Kumar Bhaskaran Jul 23 at 4:30
vote up 2 vote down
$("a").click(function(){
                alert('disabled');
                return false;

});
link|flag
vote up 1 vote down

If you are trying to block all interaction with the page you might want to look at the jQuery BlockUI Plugin

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

The app I'm currently working on does it with a CSS style in combination with javascript.

a.disabled { color:gray; }

Then whenever I want to disable a link I call

$('thelink').addClass('disabled');

Then, in the click handler for 'thelink' a tag I always run a check first thing

if ($('thelink').hasClass('disabled')) return;
link|flag
vote up 1 vote down

i worked with all the samples given above, but still i am unable to disable the link tag

but i could hide the link with this code: $('a.add').hide();

similarly, please suggest some other way to disable the link tag

link|flag
Are you sure that the code is even working? Try making something else happen like changing the color of something. Check the event log in your browser for errors. – Sneakyness Jul 22 at 12:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.