A DotNet Raider

My adventures in the .NET world!
posts - 49, comments - 12, trackbacks - 0

My Links

News

Website View Martino Bordin's profile on LinkedIn

Archives

Post Categories

(Dis)Attivare elementi con JQuery

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();

Print | posted on mercoledì 22 agosto 2012 14:08 | Filed Under [ JQuery & JScript ]

Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET