-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
44 lines (43 loc) · 986 Bytes
/
example.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Where are you now</title>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
</head>
<body>
<div></div>
<section>Hi There
<div>This is section one</div>
<span>lolwhat</span>
<div style="display:none">Hi There</div>
</section>
<br/>
<br/>
Howdy, just a text snippet
<br/>
<br/>
<section id="id" class="class1 class2">Hi There
<aside stye="display:none">
<div>This is section two</div>
<br>
<span>lolwhat</span>
<br>
<div style="display:none">Hi There</div>
<br>
<br>
<div style="display:none">Hi There</div>
</aside>
</section>
<script src="where-are-you-now.js"></script>
<script type="text/javascript">
/* Tests:
$("section").fadeOut();
whereAreYouNow();
$("section").whereAreYouNow();
$("aside").whereAreYouNow();
*/
</script>
</body>
</html>