-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise16.html
More file actions
30 lines (29 loc) · 754 Bytes
/
Exercise16.html
File metadata and controls
30 lines (29 loc) · 754 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
<html><head></head><body>
<div id="everything">
<h1>A heading!</h1>
<p>Here's some text!</p>
<p>Here's a second set of text!</p>
<div class="holder">
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
</div>
<div class="holder">
<ul>
<li id="changeMe">List Item 4</li>
<li>List Item 5</li>
<li>List Item 6</li>
</ul>
</div>
<div id="secret">We should hide this!</div>
</div>
<script src='http://code.jquery.com/jquery-2.1.1.js'></script>
<script>
var stringPrinter = function(string){
$('#secret').text(string);
};
</script>
</body>
</html>