forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontains-selector.xml
29 lines (29 loc) · 1.16 KB
/
contains-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
<?xml version="1.0"?>
<entry type="selector" name="contains" return="">
<title>:contains() Selector</title>
<sample>:contains(text)</sample>
<signature>
<added>1.1.4</added>
<argument name="text" type="String">
<desc>A string of text to look for. It's case sensitive.</desc>
</argument>
</signature>
<desc>Select all elements that contain the specified text.</desc>
<longdesc>
<p>The matching text can appear directly within the selected element, in any of that element's descendants, or a combination thereof. As with attribute value selectors, text inside the parentheses of <code>:contains()</code> can be written as a bare word or surrounded by quotation marks. The text must have matching case to be selected.</p>
</longdesc>
<example>
<desc>Finds all divs containing "John" and underlines them.</desc>
<code><![CDATA[
$( "div:contains('John')" ).css( "text-decoration", "underline" );
]]></code>
<html><![CDATA[
<div>John Resig</div>
<div>George Martin</div>
<div>Malcom John Sinclair</div>
<div>J. Ohn</div>
]]></html>
</example>
<category slug="selectors/content-filter-selector"/>
<category slug="version/1.1.4"/>
</entry>