2012-02-22 01:14:12 +00:00
|
|
|
(function($)
|
|
|
|
{
|
|
|
|
$.fn.enable = function()
|
|
|
|
{
|
|
|
|
return this.each(function() {
|
|
|
|
$(this)
|
|
|
|
.removeClass('ui-state-disabled')
|
2012-02-22 19:09:46 +00:00
|
|
|
.removeClass('ui-button-disabled')
|
2012-02-22 01:14:12 +00:00
|
|
|
.removeProp('disabled');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$.fn.disable = function()
|
|
|
|
{
|
|
|
|
return this.each(function() {
|
|
|
|
$(this)
|
|
|
|
.addClass('ui-state-disabled')
|
|
|
|
.prop('disabled', true);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
})(jQuery);
|