I am building my first app using Phonegap for iOS. I am trying to get the accelerometer values and display it as an alert on the screen. I have the latest version of cordova-2.3.0. Here's the code for the index.html file -
<!DOCTYPE html>
<html>
<head>
<title>PhoneGap Device Ready Example</title>
<script type=”text/javascript” charset=”utf-8” src=”cordova-2.3.0.js”></script>
<script type=”text/javascript” charset=”utf-8”>
document.addEventListener(“deviceready”, onDeviceReady, false);
function onDeviceReady() {
navigator.accelerometer.getCurrentAcceleration(onSuccess, onError);
}
// onSuccess: Get a snapshot of the current acceleration
//
function onSuccess(acceleration) {
alert('Acceleration X: ' + acceleration.x + '\n' +
'Acceleration Y: ' + acceleration.y + '\n' +
'Acceleration Z: ' + acceleration.z + '\n' +
'Timestamp: ' + acceleration.timestamp + '\n');
}
// onError: Failed to get the acceleration
//
function onError() {
alert('onError!');
}
</script>
</head>
<body>
<h1> Example </h1>
<p>getCurrentAcceleration </p>
</body
</html>
However, nothing happens. I get a white screen with Example and getCurrentAcceleration written on it.
Can someone please help ?
Thanks