I have a site that involves a large amount of JS code (~100K including jQuery). When I browse similar sites on my phone or tablet, I\'m usually disappointed at how sluggish they
Have a look at the following article I wrote on Javascript Performance Optimization Techniques.
For page load time on mobile devices the most relevant section is Managing and Actively reducing your Dependencies. Some techniques here are:
For UI responsiveness you want to focus on Reducing interaction with host (DOM) objects, and techniques around Maximising the efficiency of your iterations. Some key ones are:
The other sections there are all useful around different aspects of creating an optimized and responsive UI. Hope you find them useful.