Fixed issue with .val() not working properly.
[jquery.git] / src / jquery / jquery.js
index e26ae9e..c8605d9 100644 (file)
@@ -1025,6 +1025,7 @@ jQuery.extend({
                        odd: "i%2",
                        
                        // Child Checks
+                       "nth-child": "jQuery.sibling(a,m[3]).cur",
                        "first-child": "jQuery.sibling(a,0).cur",
                        "last-child": "jQuery.sibling(a,0).last",
                        "only-child": "jQuery.sibling(a).length==1",
@@ -1265,7 +1266,8 @@ jQuery.extend({
                        "class": "className",
                        "float": "cssFloat",
                        innerHTML: "innerHTML",
-                       className: "className"
+                       className: "className",
+                       value: "value"
                };
 
                if ( fix[name] ) {