-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path5-delete-your-jquery-functions.html
40 lines (35 loc) · 1.62 KB
/
5-delete-your-jquery-functions.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
<!-- Delete Your jQuery Functions
These animations were cool at first, but now they're getting kind of distracting.
Delete all three of these jQuery functions from your document ready function, but leave your document ready function itself intact.
- All three of your jQuery functions should be deleted from your document ready function.
- You should leave your script element intact.
- You should leave your $(document).ready(function() { at the beginning of your script element.
- You should leave the document.ready function's closing }) intact.
- You should leave your script element closing tag intact.
-->
<script>
$(document).ready(function () {
});
</script>
<!-- Only changed code above this line -->
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row">
<div class="col-xs-6">
<h4>#left-well</h4>
<div class="well" id="left-well">
<button class="btn btn-default target" id="target1">#target1</button>
<button class="btn btn-default target" id="target2">#target2</button>
<button class="btn btn-default target" id="target3">#target3</button>
</div>
</div>
<div class="col-xs-6">
<h4>#right-well</h4>
<div class="well" id="right-well">
<button class="btn btn-default target" id="target4">#target4</button>
<button class="btn btn-default target" id="target5">#target5</button>
<button class="btn btn-default target" id="target6">#target6</button>
</div>
</div>
</div>
</div>