forked from hiediutley/HelloPhoneGap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPIExample.html
More file actions
66 lines (49 loc) · 2.1 KB
/
Copy pathAPIExample.html
File metadata and controls
66 lines (49 loc) · 2.1 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!-- Change this if you want to allow scaling -->
<meta name="viewport" content="width=default-width; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="HelloPhoneGap.css" type="text/css"/>
<title>HelloPhoneGap</title>
<script type="text/javascript" charset="utf-8" src="phonegap.0.9.4.min.js"></script>
<script type="text/javascript" charset="utf-8">
function onBodyLoad()
{
document.addEventListener("deviceready",onDeviceReady,false);
}
/* When this function is called, PhoneGap has been initialized and is ready to roll */
function onDeviceReady()
{
phoneGapReady.innerHTML = "PhoneGap is Ready";
}
</script>
</head>
<body onload="onBodyLoad()">
<DIV class="phoneGapAPITitle">
<TABLE width="100%">
<TR>
<TD>
API
</TD>
<TD align="right"><a href="index.html">back</a>
</TD>
</TR>
</TABLE>
</DIV>
<DIV class="phoneGapAPI">
<TABLE>
<TR>
<TD>
<button onclick="">Something</button> <br>
</TD>
</TR>
<TR>
<TD id="results" >
</TD>
</TR>
</TABLE>
</DIV>
<DIV id="phoneGapReady" class="phoneGapReady">waiting for PhoneGap to initialize....</DIV>
</body>
</html>