forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty-selector.xml
36 lines (36 loc) · 1.33 KB
/
empty-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
<?xml version="1.0"?>
<entry type="selector" name="empty" return="">
<title>:empty Selector</title>
<sample>:empty</sample>
<signature>
<added>1.0</added>
</signature>
<desc>Select all elements that have no children (including text nodes).</desc>
<longdesc>
<p>This is the inverse of <code>:parent</code>. </p>
<p>One important thing to note with :empty (and :parent) is that child elements include text nodes.</p>
<p>The W3C recommends that the <code><p></code> element have at least one child node, even if that child is merely text (see http://www.w3.org/TR/html401/struct/text.html#edef-P). Some other elements, on the other hand, are empty (i.e. have no children) by definition: <input>, <img>, <br>, and <hr>, for example.</p>
</longdesc>
<example>
<desc>Finds all elements that are empty - they don't have child elements or text.</desc>
<code><![CDATA[
$( "td:empty" )
.text( "Was empty!" )
.css( "background", "rgb(255,220,200)" );
]]></code>
<css><![CDATA[
td {
text-align: center;
}
]]></css>
<html><![CDATA[
<table border="1">
<tr><td>TD #0</td><td></td></tr>
<tr><td>TD #2</td><td></td></tr>
<tr><td></td><td>TD#5</td></tr>
</table>
]]></html>
</example>
<category slug="selectors/content-filter-selector"/>
<category slug="version/1.0"/>
</entry>