Just a quick question about JQuery, I've been using phonegap and made a few apps with JQuery. One in particularly runs really slowly so I've been trying to slim it down as much as possible.

One change I've been considering is replacing JQuery with something smaller. What would be the most painless replacement, ie what could I use that would need the least code change and have as much of JQuerys features as possible?

As far as I can tell xui is the winner, but maybe theres something else out there I'm not aware of?

Also am I right in saying JQuery Mobile goes on top of JQuery, so the footprint is actually larger?

Please share your advice on this, it would be a great help.

Thanks

link|improve this question

58% accept rate
I believe jQuery mobile uses jQuery-min – potato Dec 8 '11 at 12:53
Yep: jquerymobile.com/download . I've made a few pages that uses jQuery Mobile and they are not slow. Are you doing some sort of heavy operations? – OptimusCrime Dec 8 '11 at 12:57
Ok so jquery + jquery mobile weigh in at 174k still seems hefty compared to xui at 10.6k. I suppose it depends on whether xui can do what I need it to. – mao Dec 8 '11 at 12:58
I'd look at optimising your code first, before switching libraries. Also, the size of the library only affects the initial load times. If it's running slowly or not being responsive, it's down to the code you've written. – Rory McCrossan Dec 8 '11 at 12:59
The main culprits were html5 canvases which I have now replaced with css / webkit masks and populating a db, which is now pre populated and included. I'm just going through the app again trying to optimise to the maximum and jquery is the obvious target. – mao Dec 8 '11 at 13:04
feedback

2 Answers

I find jQuery very bloated, and I don't use a lot of its features. So I always use xui. I also find Uranium really useful (and Uranium includes xui) - you don't need to write any javascript, just add attributes to HTML.

link|improve this answer
feedback

If you still like using jQuery and just want to cut down the size, try jquip. It allows you to only include the features of jQuery you actually use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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