Using strings like
$('#myButton').button({ 'disabled' : true });
I would expect this to match the CSS selector: disabled, but it is not. The button is explicitly disabled, but it has the following properties:
class="button ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only ui-button-disabled ui-state-disabled" role="button" aria-disabled="true">
I understand that this aria-disabled thing is not an IE provider prefix , but why doesn't it have the usual old "disconnected"? Did I do something wrong? I am going from classes in which we use the jQuery user interface, which I know very little about (I was looking for errors in someone else's code).
source share