PhoneGap Bluid Not Scrolling

Loutleunsolve

New Member
I cant get this app to scroll when on a mobile device. This only the first part before the body the rest is divs and content. Which does fully load up. Note Jquery Moblie is being used in this app.\[code\]<!DOCTYPE html> <html><head> <script type="text/javascript"> function onBodyLoad() { document.addEventListener("deviceready", onDeviceReady, false); } function onDeviceReady() { } </script> <meta name="viewport" content="width=device-width" /><meta charset="utf-8"><title>jQuery Mobile Web App</title><link href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"/><script src="http://code.jquery.com/jquery-1.6.4.min.js" type="text/javascript"></script><script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js" type="text/javascript"></script><script type="text/javascript" charset="utf-8" src="http://stackoverflow.com/questions/14421509/phonegap.js"></script></head> <body onload="onBodyLoad()">\[/code\]
 
Back
Top