http://dev.jquery.com/ticket/1323
Description ΒΆ <#comment:description>
You can call the attribute correctly like this...
jQuery('form').attr('name:attribute')="true"
but that doesn't return a collection of forms where the condition is
true... and if you manually create an array that doesn't work with the
jQuery each. The following would be a test case that should work.
(Libraries like SPRY are using this technology and it SHOULD be with
this release if possible.)
jQuery('[EMAIL PROTECTED]:attribute="true"]').each(function(){});
If another type of selectore or function cared for that it would be fine
also... but this is definitely a missing feature in jQuery selectors and
selectors are very much what makes jQuery great.