I'm having issues with attr('disabled', 'disabled') in internet explorer with jQuery 1.7.1. The buttons appear disabled, however if they're clicked they still execute. In firefox, safari, and chrome, this behaves as expected (does nothing, blocking the click). Any ideas?
disableWizardButtons: function() {
jQuery(this.wizardButtonSelector).filter(this.enabledSelector).each(function() {
var button = jQuery(this);
button.data().originalClass = button.attr('class');
button.removeClass().addClass('btn-secondary-disabled');
button.attr('disabled', 'disabled');
button.prop("onclick", null);
});
}