aboutsummaryrefslogtreecommitdiffstats
path: root/src/jquery
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-09-17 11:43:16 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-09-17 11:43:16 +0000
commitc12bce204620fd2ca95099030da98013a9490c37 (patch)
tree169adbd20a81ef802efc72645c26c2c259db7199 /src/jquery
parent826bb93cc35a602f27d713a40e9714dedcfb5d47 (diff)
downloadjquery-c12bce204620fd2ca95099030da98013a9490c37.tar.gz
jquery-c12bce204620fd2ca95099030da98013a9490c37.zip
Added expressions for feature #69 (form element selectors), needs some documentation in the wiki when the next official release is out
Diffstat (limited to 'src/jquery')
-rw-r--r--src/jquery/jquery.js21
1 files changed, 19 insertions, 2 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 97038331c..0b6b1f4fb 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -1531,11 +1531,23 @@ jQuery.extend({
visible: "a.type!='hidden'&&jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!='hidden'",
hidden: "a.type=='hidden'||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')=='hidden'",
- // Form elements
+ // Form attributes
enabled: "!a.disabled",
disabled: "a.disabled",
checked: "a.checked",
- selected: "a.selected"
+ selected: "a.selected",
+
+ // Form elements
+ text: "a.type=='text'",
+ radio: "a.type=='radio'",
+ checkbox: "a.type=='checkbox'",
+ file: "a.type=='file'",
+ password: "a.type=='password'",
+ submit: "a.type=='submit'",
+ image: "a.type=='image'",
+ reset: "a.type=='reset'",
+ button: "a.type=='button'",
+ input: "a.nodeName.toLowerCase()=='input'||a.nodeName.toLowerCase()=='select'||a.nodeName.toLowerCase()=='textarea'"
},
".": "jQuery.className.has(a,m[2])",
"@": {
@@ -1662,6 +1674,11 @@ jQuery.extend({
* @test t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"] );
* @test t( "All Children of ID with no children", "#firstUL/*", [] );
*
+ * @test t( "Form element :input", ":input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "area1", "select1", "select2", "select3"] );
+ * @test t( "Form element :radio", ":radio", ["radio1", "radio2"] );
+ * @test t( "Form element :checkbox", ":checkbox", ["check1", "check2"] );
+ * @test t( "Form element :text", ":text", ["text1", "text2", "hidden2", "name"] );
+ *
* @test t( ":not() Existing attribute", "input:not([@name])", ["text2", "check2"]);
* @test t( ":not() Equals attribute", "select:not([@name=select1])", ["select2", "select3"]);
* @test t( ":not() Equals quoted attribute", "select:not([@name='select1'])", ["select2", "select3"]);