-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathattribute-starts-with-selector.xml
More file actions
22 lines (21 loc) · 1.17 KB
/
attribute-starts-with-selector.xml
File metadata and controls
22 lines (21 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<entry type='selector' name="attributeStartsWith" return="" >
<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. Can be either an unquoted single word or a quoted string.</desc>
</argument></signature>
<desc>Selects elements that have the specified attribute with a value beginning exactly with a given string.</desc>
<longdesc><p>This selector can be useful for identifying elements in pages produced by server-side frameworks that produce HTML with systematic element IDs. However it will be slower than using a class selector so leverage classes, if you can, to group like elements.</p></longdesc>
<example>
<desc>Finds all inputs with an attribute name that starts with 'news' and puts text in them.</desc>
<code><![CDATA[$('input[name^="news"]').val('news here!');]]></code>
<html><![CDATA[<input name="newsletter" />
<input name="milkman" />
<input name="newsboy" />]]></html>
</example>
<category slug="selectors/attribute-selectors"/>
<category slug="version/1.0"/>
</entry>