-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquestion.html
More file actions
41 lines (37 loc) · 1.2 KB
/
question.html
File metadata and controls
41 lines (37 loc) · 1.2 KB
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
<!DOCTYPE html>
<html>
<head> </head>
<body>
<h1>Questions</h1>
<p>when is your birthday?</p>
<button id="button1">june 7</button>
<button id="button2">september 7</button>
<p>what is your dog name?</p>
<button id="button3">june 8</button>
<button id="button4">september 5</button>
<p>what is up?</p>
<button id="button5">you</button>
<button id="button6">me</button>
<p>are you ok?</p>
<button id="button7">no</button>
<button id="button8">yes</button>
<p>My favorite color is?</p>
<button id="button9">blue</button>
<button id="button10">pink</button>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script>
$('#button1'). click(function(){
alert("you are right");
})
$('#button2'). click(function(){
alert("you do not know me at all");
})
$('#button3'). click(function(){
alert("you are right");
})
$('#button4'). click(function(){
alert("you do not know me at all");
})
</script>
</body>
</html>