forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattribute-equals-selector.xml
44 lines (44 loc) · 1.37 KB
/
attribute-equals-selector.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<entry type="selector" name="attributeEquals" return="">
<title>Attribute Equals Selector [name="value"]</title>
<sample>[attribute='value']</sample>
<signature>
<added>1.0</added>
<argument name="attribute" type="String">
<desc>An attribute name.</desc>
</argument>
<argument name="value" type="String">
<desc>An attribute value. <strong>Can be either a <a href="https://www.w3.org/TR/css3-selectors/#attribute-selectors">valid identifier</a> or a quoted string.</strong></desc>
</argument>
</signature>
<desc>Selects elements that have the specified attribute with a value exactly equal to a certain value.</desc>
<longdesc/>
<example>
<desc>Finds all inputs with a value of "Hot Fuzz" and changes the text of the next sibling span.</desc>
<code><![CDATA[
$( "input[value='Hot Fuzz']" ).next().text( "Hot Fuzz" );
]]></code>
<html><![CDATA[
<div>
<label>
<input type="radio" name="newsletter" value="Hot Fuzz">
<span>name?</span>
</label>
</div>
<div>
<label>
<input type="radio" name="newsletter" value="Cold Fusion">
<span>value?</span>
</label>
</div>
<div>
<label>
<input type="radio" name="newsletter" value="Evil Plans">
<span>value?</span>
</label>
</div>
]]></html>
</example>
<category slug="selectors/attribute-selectors"/>
<category slug="version/1.0"/>
</entry>