<textarea id="test" disabled>Test</textarea>
Is there a way to listen to the changes in the attributes? such as disabled attribute.
I need an event to add or remove "disabled" attr. Something like this:
$("#test").on("change attribute",function(){
alert("Textarea enabled");
})