id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
3443,Can't Select Attribute Values Containing Closing Square Bracket ],nickretallack,,"Try it yourself.  Add this element to a page:
<input type=""text"" name=""foo[bar]"" />

Then try to select it by name:
$('[name=foo[bar]]')

You get nothing, even if you try to escape it:
$('[name=foo\[bar\]]');
$('[name=foo\\[bar\\]]')

Playing around a little more shows that it's just the closing square brackets that break it, since $(""[name*=foo[bar]"") works.

Clearly it's parsing the first ] it sees as the end of the attribute selector.  Any chance you guys can beef up the parser to handle this special case?",bug,closed,major,1.3,docs,1.2.6,fixed,,,,
