-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathexercise3.html
27 lines (27 loc) · 917 Bytes
/
exercise3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Exercise #3: Changing images</title>
<script>
function changeImage() {
var s = document.getElementById("country");
var img = document.getElementById("img");
img.src = "images/" + s.options[s.selectedIndex].value;
img.alt = s.options[s.selectedIndex].text;
}
</script>
</head>
<body>
<form name="form">
<select name="country" id="country" onchange="changeImage();">
<option value="no_image.png">Select</option>
<option value="flag_NO.png">Norway</option>
<option value="flag_SE.png">Sweden</option>
<option value="flag_DK.png">Denmark</option>
<option value="flag_IL.png">Iceland</option>
</select>
</form>
<img id="img" src="images/no_image.png" style="border: 1px solid black" alt="No image selected"/>
</body>
</html>