I just now started with my first PhoneGap project using zend studio. But, after i build and deploy it, the application is quite slow. Both on android and iOS. The scrolling is l
as mentioned, use FastClick to remove the 300ms delay for clicks.
you can also use this code to speed up the page transition:
$(document).bind("mobileinit", function () {
$.mobile.defaultPageTransition = 'none';
});