vote up 0 vote down star

Hey I'm trying to fire a new event I created for when a button is set to disabled state (By another method etc...) how can I achieve this? i want to listen for when the disabled state changes.

flag

20% accept rate

4 Answers

vote up 1 vote down

Why don't you just call the method from withing the method that disables the button?

function disableButton(){
     $('#the-button').attr('disabled', 'disabled');
     whatToDoWhenDisabled();
}

function whatToDoWhenDisabled(){
     Do whatever it is you do;
}
link|flag
vote up 1 vote down

If you do not necessarily have control of the disablement of the button there are two events you could look into:

onpropertychange (IE)

DOMAttrModified (w3c)

link|flag
vote up 0 vote down

No. There is no event which is raised when the value of an attribute changes.

link|flag
vote up 0 vote down

Id like to stay away from putting the code in the method which is being called just because i wanted to to be a site wide solution....

i was thinking of a while loop that doesn't end and does this

if($('#yourButton').is(':disabled')) { $('#someElement').trigger('yourEvent'); }

but the issue is that i don't want the JS slowing this page down would this be a issue...

link|flag

Your Answer

Get an OpenID
or

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