I\'m trying out phone gap and I want my application to not scroll up and down when the user drags their finger across the screen. This is my code. Can anyone tell me why it\
Go native and add this line to the AppDelegate.m file
self.viewController.webView.scrollView.scrollEnabled = false;
Drop it in the - (BOOL)application:(UIApplication)application didFinishLaunchingWithOptions* section.