-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathques9.html
40 lines (30 loc) · 775 Bytes
/
ques9.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
<!DOCTYPE html>
<html>
<head>
<title>Question 9 </title>
<style>
.test
{ background-color:yellow;}
</style>
</head>
<body>
<p>Select food from the list.</p>
<select>
<option value="">Select your favourite food item</option>
<option value="Pizza">Pizza
<option value="Maggi">Maggi
<option value="Burger">Burger
<option value="Fries">Fries
</select>
<p>So you want to have <span><p id="ye"></p></span> </p>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('select').on('change', function() {
$("#ye").append(this.value+" <br>")
});
});
</script>
<a href="contents.html">Navigate to other questionns</a>
</body>
</html>