how could I fire a event if the a css class was added or changed with jQuery? Does changing of CSS class fire the jQuery change() event?
|
Whenever you change a class in your script, you could use a
but otherwise, no, there's no baked-in way to fire an event when a class changes. |
|||||||||||||||||
|
|
I would suggest you override the addClass function. You can do it this way:
|
|||||||||||||||||
|
|
IMHO the better solution is to combine two answers by @RamboNo5 and @Jason I mean overridding addClass function and adding a custom event called
NOTE: I had to post it as |
|||||
|
|
I'm not sure if you mean if the CSS class definition is changed (which can be done programmatically but is tedious and not generally recommended) or if a class is added or removed to an element. There is no way to reliably capture this happening in either case. You could of course create your own event for this but this can only be described as advisory. It won't capture code that isn't yours doing it. Alternatively you could override/replace the |
|||
|
|
|
If you need to trigger a specific event you can override the method addClass() to fire a custom event called 'classadded'. Here how:
|
||||
|
|
|
Just a proof of concept:
Now add/remove/toggle a/some class/es:
|
||||
|
|
|
There is one more way without triggering an custom event A jQuery Plug-in to monitor Html Element CSS Changes by Rick Strahl Quoting from above
|
|||
|
|