Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Sometimes, it is desirable to prevent scrolling on the main body of the app. This can be accomplished by adding the following to the window.onload function in your app.js file in PhoneGap.

Code Block
javascript
javascript
window.onload = function() {
  addEvent(document, "touchmove", function(e) {
    e.preventDefault();
  });
  // the rest of your onload code can go here
};