-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 1.61 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.3.2.min.css" />
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
<script>
function show_result()
{
$("#div_result").html("I did something :)");
}
function clear_result(){
$("#div_result").html("");
}
</script>
<!-- page Home -->
<div data-role="page" id="home">
<div data-role="header">
<a href="#home">HOME</a>
<h1>Welcome</h1>
<a href="#about">ABOUT</a>
</div><!-- /header -->
<div data-role="content">
<input type="button" id="button_do_it" onclick="show_result()" value="Do Something"></input>
<div id="div_result">
<p>Some sample text that should be changed....</p>
</div>
<input type="button" id="button_clear" onclick="clear_result()" value="Clear"></input>
</div><!-- /content -->
<div data-role="footer">
<p style="text-align:center;font-size:small;">copyrights www.tk-fn.com</p>
</div><!-- /footer -->
</div>
<!-- /page Home -->
<!-- page About -->
<div data-role="page" id="about">
<div data-role="header">
<a href="#home">HOME</a>
<h1>About</h1>
<a href="#about">ABOUT</a>
</div><!-- /header -->
<div data-role="content">
</div><!-- /content -->
<div data-role="footer">
<p style="text-align:center;font-size:small;">copyrights www.tk-fn.com</p>
</div><!-- /footer -->
</div>
<!-- page About -->
</body>
</html>