I have a jquery mobile page thats taking between 6-8 seconds to render on an iPhone 4.

The page load time seems okay and I've taken the necessary steps to optimise css, js etc. However, the page contains a number of form inputs that are rendered by jQM (ie. select dropdowns, sliders etc) and this seems to take about 4-5 seconds to render.

Has anyone else experienced a similar problem and found a way to increase the render time?

I'm using the minimised jQM 1.0.

Thanks.

link|improve this question

64% accept rate
How big (ungzipped) is the JS code you're loading, phones only have small memory... – Andy Davies Nov 26 '11 at 22:08
feedback

1 Answer

Are all the .js and .css files needed at startup? I've found dynamically loading them after JQM initialized helped with initial perceived performance.

Also, do those form inputs need to be shown immediately on start? Maybe you could render them in the background and only in the pageshow event actually reveal their container...

Personally I had no such problems, so I would suggest you review your events firing and code logic - maybe there's a loop in there that's throwing you off.

link|improve this answer
There's actually very few js/css files but I've tried concatenating them and minifying but page load times didn't improve. Also, all the code is on a single HTML file but I don't think this affects rendering time as elements are rendered lazily on request. – Gearóid Nov 28 '11 at 15:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.