]> source.dussan.org Git - jquery.git/commitdiff
Added fix for multiple attribute selectors w/ test cases.
authorJohn Resig <jeresig@gmail.com>
Tue, 15 Aug 2006 04:40:21 +0000 (04:40 +0000)
committerJohn Resig <jeresig@gmail.com>
Tue, 15 Aug 2006 04:40:21 +0000 (04:40 +0000)
src/jquery/jquery.js

index bdb46a82b996ca7dbc2ec250a733a82f60736a20..da0e582dd42d3c735b56d822045c177e7871bdb1 100644 (file)
@@ -1089,6 +1089,9 @@ jQuery.extend({
         * @test t( "Attribute Equals", "a[@rel='bookmark']", ["simon1"] );
         * @test t( "Attribute Equals", 'a[@rel="bookmark"]', ["simon1"] );
         * @test t( "Attribute Equals", "a[@rel=bookmark]", ["simon1"] );
+        * @test t( "Multiple Attribute Equals", "input[@type='hidden'],input[@type='radio']", ["hidden1","radio1","radio2"] );
+        * @test t( "Multiple Attribute Equals", "input[@type=\"hidden\"],input[@type='radio']", ["hidden1","radio1","radio2"] );
+        * @test t( "Multiple Attribute Equals", "input[@type=hidden],input[@type=radio]", ["hidden1","radio1","radio2"] );
         *
         * @test t( "Attribute Begins With", "a[@href ^= 'http://www']", ["google","yahoo"] );
         * @test t( "Attribute Ends With", "a[@href $= 'org/']", ["mark"] );
@@ -1286,7 +1289,7 @@ jQuery.extend({
                                        .replace( 'S', "([a-z*_-][a-z0-9_-]*)" )
 
                                        // Look for something (optionally) enclosed with quotes
-                                       .replace( 'Q', " *'?\"?([^'\"]*)'?\"? *" ), "i" );
+                                       .replace( 'Q', " *'?\"?([^'\"]*?)'?\"? *" ), "i" );
 
                                var m = re.exec( t );