-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjq8.js
More file actions
39 lines (39 loc) · 872 Bytes
/
jq8.js
File metadata and controls
39 lines (39 loc) · 872 Bytes
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
$(document).ready(function () {
$("#rose").click(function () {
$("#white1").show();
$(this).hide();
});
$("#white1").click(function () {
$(this).hide();
$("#white2").show();
});
$("#white2").click(function () {
$(this).hide();
$("#white3").show();
});
$("#white3").click(function () {
$(this).hide();
$("#white4").show();
});
$("#white4").click(function () {
$(this).hide();
$("#white5").show();
});
$("#white5").click(function () {
$(this).hide();
$("#white6").show();
});
$("#white6").click(function () {
$(this).hide();
$("#white7").show();
});
$("#white7").click(function () {
$(this).hide();
$("#white8").show();
});
$("#white8").click(function () {
$(this).hide();
$("#white9").show();
$("#replay").show();
});
});