-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
31 lines (28 loc) · 924 Bytes
/
index2.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
<html>
<head>
<title> Javascript basics page</title>
</head>
<body onload ="">
<audio id = "myAudio" src="crowd-cheering.mp3"></audio>
<div class="menu">
<button id="chng">Change title</button>
<button id="ask">change title from input</button>
<button onclick="">Make an alert</button>
<button id="conf">ask for confirmation</button>
<button id="add">add to div </button>
<button id="clear">clear</button>
<button id="hide">Hide</button>
<button id="get">Get</button>
</div>
<h1>This is page title</h1>
<div id="first-div">Test div with simple text</div>
<div id="confirmed">Undefined</div>
<input id='tt'/>
</body>
<script
src="http://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src='index2.js'>
</script>
</html>