Work with PhoneGap 2.9.*
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.HelloWorld.say(
function(result) {
alert("result = " + result);
},
function() {
alert("error");
}
);
}