-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperunalaskuri.html
47 lines (41 loc) · 1.91 KB
/
perunalaskuri.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
46
47
<!DOCTYPE html>
<html>
<head>
<!--<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="themes/teema1.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.css">
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.js"></script>
<meta name="apple-mobile-web-app-capable" content="yes"> -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="themes/teema1.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.3/jquery.mobile.structure-1.4.3.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.3/jquery.mobile-1.4.3.min.js"></script>
</head>
<body>
<div data-role="page">
<center>
<h1 id="pisteet">Score: </h1>
<form action="#">
<!--<input type="button" width="100px" height="100px" value="ADD!">-->
<button type="submit" onclick="lisaaPiste()">
<img src="pottu.png">
</form>
</center>
<script>
$("form").submit(false);
var maara = 0;
function lisaaPiste()
{
maara++;
document.getElementById("pisteet").innerHTML = "Score: " + maara;
}
</script>
</div>
</body>
</html>