forked from asquarezone/UIZone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicFilters.html
More file actions
35 lines (32 loc) · 736 Bytes
/
BasicFilters.html
File metadata and controls
35 lines (32 loc) · 736 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(function () {
$("div:has(h1)").css("border", "1px solid red");
});
</script>
</head>
<body>
<table border="1">
<tr><td>TD #0</td><td>TD #1</td><td>TD #2</td></tr>
<tr><td>TD #3</td><td>TD #4</td><td>TD #5</td></tr>
<tr><td>TD #6</td><td>TD #7</td><td>TD #8</td></tr>
</table>
<div>
<p>Hai</p>
<p>Hello</p>
<p></p>
<h1></h1>
</div>
<div>
<a></a>
<p>Hai2</p>
<p>Hello2</p>
<p></p>
</div>
</body>
</html>