-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathp.html
45 lines (44 loc) · 1.21 KB
/
p.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
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Get Selected Option Text</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".country").change(function(){
if(this.value == "maha"){
$("#p").show();
$("#q").hide()
}
else{
$("#p").hide()
$("#q").show()
}
})
})
</script>
</head>
<body>
<form>
<label>Select Country:</label>
<select class="country">
<option>--Select Country--</option>
<option class="maha" value="maha">Maharastra</option>
<option>Kerla</option>
</select>
<br><br>
<br><label>Select Country:</label>
<select name="" id="p" hidden>
<option>Chalisgaon</option>
<option>Nagar</option>
<option>Alandi</option>
</select>
<select name="" id="q" hidden>
<option>Kanpur</option>
<option>kollam</option>
<option>Kanpur</option>
</select>
</form>
</body>
</html>