Una delle cose che più mi piacciono di JQuery è la facilità con la quale è possibile estendere le sue funzionalità.
Ecco infatti come è possibile implementare le funzioni per attivare e disattivare gli elementi del DOM:
// Set an element as enabled, if supported
$.fn.enable= function () {
return this.each(function () {
if (typeof this.disabled != "undefined") {
this.disabled = false;
}
});
};
// Set an element as disabled, if supported
$.fn.disable = function () {
return this.each(function () {
if (typeof this.disabled != "undefined") {
this.disabled = true;
}
});
};
In questo modo è possibile (dis)abilitare qualsiasi elemento con i soliti selettori JQuery:
$("*").enable();
$(".editor").disable();