views:

82

answers:

3

With mobile devices or embedded systems you often support only one browser for performance and memory reasons. With traditional JS libraries you must limit yourself in features and performance to support as many browsers as possible. This is exactly what I would like to avoid.

Are their any JavaScript libraries out there focusing only on one web browser? Like jQuery, but without all the cross-browser stuff.

So far, the only library I've found is http://xuijs.com/

+1  A: 

jQTouch is jQuery-based, but very heavily WebKit-oriented.

undees
True. But still comes with jQuery and all its cross-browser support/features :( But who knows, maybe the performance difference isn't that big.
cgbystrom
+1  A: 

jQuery and others libraries are already optimized for it, they test the browser features only once.

M28
+1  A: 

Check out ZeptoJS: http://github.com/madrobby/zepto

Frank DENIS