vote up 2 vote down star
2

Consider the following code:

$("a").attr("disabled", "disabled");

In IE and FF, this will make anchors unclickable, but in WebKit based browsers (Google Chrome and Safari) this does nothing. The nice thing about the disabled attribute is that it is easily removed and does not effect the href and onclick attributes.

Do you have any suggestions on how to get the desired result. Answers must be:

  • Easily be revertable, since I want to disable form input controls while I have an AJAX call running.
  • Must work in IE, FF, and WebKit
flag

1 Answer

vote up 3 vote down check

I assume that you have an onclick event handler bound to these anchor elements. Just have your event handler check the "disabled" attribute and cancel the event if it is set. Your event handler would look something like this:

$("a").click(function(event){
  if (this.disabled) {
    event.preventDefault();
  } else {
    // make your AJAX call or whatever else you want
  }
});

You can also set a stylesheet rule to change the cursor.

a[disabled=disabled] { cursor: wait; }

Edit - simplified the "disabled" check as suggested in comments.

link|flag
function diableForms() { $("input, button, textarea, a").attr("disabled", "disabled").css("cursor", "wait"); } function enableForms() { $("input, button, textarea, a").not(".disabled").removeAttr("disabled").css("cursor", ""); } – Stefan Rusek Oct 6 '08 at 18:22
I just pasted the disableForms and enableForms functions I am using. Thanks for your suggestion. – Stefan Rusek Oct 6 '08 at 18:24
if(this.disabled == "disabled") will be quicker – Sugendran Oct 7 '08 at 4:39
actually I think it's if(this.disabled) - i really should check my comments before i write them – Sugendran Oct 7 '08 at 4:39
if(this.disabled) is what I used. I don't have enough karma to edit posts or I would add some of this too Neall's post – Stefan Rusek Oct 10 '08 at 10:37

Your Answer

Get an OpenID
or

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