question about change in behavior

question about change in behavior


In jQuery 1.0.4 you could do something like this:
$("#something").filter("[@name]", function(){ /* do something */ });
In jQuery 1.1+ this is not possible anymore, I'd need to do something
like:
$("#something").filter("[@name]").each( function(){ /* do something
*/ }));
I'm just wondering if this is documented somewhere, I went through the
1.1 release notes but I couldn't find anything about it. I'm wondering
if there are other functions that would have had the same change in
behavior.
Thanks,
Carlos