Update Added jsfiddle - see bottom of post
I currently have a function that reenables all disabled fields on the screen. While it runs pretty quickly (<1ms according to Firebug profiler), I am in the process of tidying up all the Javascript in my screens and figured this particular function seemed to be a little redundant:
function enableDisabledFields() {
$('[disabled]').each(function(i) {
$(this).removeAttr('disabled');
});
}
I was under the impression that those 3 lines could be replaced as follows, and I expected if not better than at least equal performance.
function enableDisabledFields() {
$('[disabled]').removeAttr('disabled');
}
Apparently I'm wrong. The first performs much better and I don't quite understand why. Even adding additional selectors such as :input make no difference (and in fact make it worse).
Can anyone clear up my confusion? Thanks.
Edit I should add that we're using an old version of jQuery - 1.3.1 I believe.
Edit2 Here are some jsFiddle links. Please keep in mind that I may be misunderstanding Firebug's profiler (which I'm thinking seems to be the case).
Option 1: http://jsfiddle.net/kcut7/
Option 2: http://jsfiddle.net/ZgZpU/