Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is slightly different from Looking for a recommendation for a lightweight mobile HTML5/JavaScript framework

I'm joining a JS/HTML5 project that is targeting the ipad, currently using Backbone.js for MVC and Zepto for dom manipulation. They've experimented with jQuery mobile and found the list performance to be underwhelming.

Basically I'm looking for an alternative mobile Javascript UI framework with a non-viral OS license (Sencha seems out with gpl 3, and I'd like something focused purely on ui widgets), which provides performant dynamic lists and a general set of iOS style ui widgets. I do have experience with enyo, but I don't particularly like it, so that's out of the question as well.

Any suggestions?

share|improve this question

3 Answers

up vote 5 down vote accepted
+75

Try Chocolate Chip UI - BSD Licence too.

Discussing performance - on the iPad, don't forget that if you want to have hardware accelerated CSS transforms (you want this), then you must be using webkit transforms / translates etc. Thomas Fuchs (author of Zepto/scriptaculous) wrote up a pretty good article talking about these issues, which I would suggest is essential reading, despite being from 2010.

share|improve this answer
1  
I was actually reading that article over the weekend. His proof of concept app actually runs quite fast on the iphone. I'm going to try this out. +1, but I'd like to see a couple more answers before I fully accept :) – Gopherkhan Mar 27 '12 at 22:45
One of the reasons to avoid using JQuery is the huge amount of legacy code that comes baked in. Clearly, if you are not targeting IE etc, then having a large amount of workarounds being executed will have an overhead to your code. One of the reasons ChocChip is cool, is that it works fine with Zepto, which as you know is is a jquery-like framework, but built from the ground up thinking of mobile. – danp Apr 4 '12 at 15:48
How are you getting on, anyway? I'm curious :) – danp Apr 4 '12 at 15:49
So it's looking like we're going to try ChocoChip for small things here and there. We have a lot of components that we're just going to have to code from scratch in order to ensure performance. But ChocoChip looks like it will help us a lot. Thanks for the tip! – Gopherkhan Apr 5 '12 at 18:18

jQuery Mobile 1.1.0 [1] looks pretty nice. Much better performance than previous versions, focused on widgets, and dual licensed under the MIT or GPL Version 2 licenses.

Actually it's on RC1 state, but hopefully we'll get final release soon.

I'm sure you already know jQuery Mobile (who doesn't? :P), but maybe you should try this new version, just to test new performance.

[1] http://jquerymobile.com/demos/1.1.0-rc.1/

share|improve this answer

This site gives all the options regarding mobile JS framework

http://sixrevisions.com/javascript/mobile%C2%A0web-development-frameworks/

But my suggestion is go for JQuery

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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