-
Notifications
You must be signed in to change notification settings - Fork 0
/
question_chicken_4.html
42 lines (35 loc) · 1.29 KB
/
question_chicken_4.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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>GETTING STARTED WITH BRACKETS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="question_cow_1.css">
<script src="responsivevoice.js"></script>
<script src="jquery.min.js"></script>
</head>
<body>
<h3>Does your bird have resperitory problems/ difficulties breathing?</h3>
<div class='green_part'>
<a class="click_green" href="outcome_fowl_pox.html" title="photo" id="green"></a>
<textarea id="text">Does your bird have resperitory problems/ difficulties breathing?</textarea>
<select id="voiceselection"></select>
<input
onclick="responsiveVoice.speak($('#text').val(),$('#voiceselection').val());"
type="button"
class="button"
/>
<script>
//Populate voice selection dropdown
var voicelist = responsiveVoice.getVoices();
var vselect = $("#voiceselection");
$.each(voicelist, function() {
vselect.append($("<option />").val(this.name).text(this.name));
});
</script>
</div>
<div class='red_part'>
<a class="click_red" href="outcome_newcastle_disease.html" title="photo" id="red"></a>
</div>
</body>
</html>