Saturday, 24 December 2016

APACHE CORDOVA EVENTS

use events plugin and then you use the below code

for example if we pressed back button


!DOCTYPE html>
<html>
  <head>
    <title>Back Button Example</title>
    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8">
    // Wait for device API libraries to load
    //
    function onLoad() {
        document.addEventListener("deviceready", onDeviceReady, false);
    }
    // device APIs are available
    //
    function onDeviceReady() {
        // Register the event listener
        document.addEventListener("backbutton", onBackKeyDown, false);
    }
    // Handle the back button
    //
    function onBackKeyDown() {
        alert("back button pressed!");
    }
    </script>
  </head>
  <body onload="onLoad()">
  </body>
</html>

No comments:

Post a Comment