cgbystrom
cgbystrom

Reputation: 1987

Are there any JavaScript libraries exclusively for WebKit?

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/

Upvotes: 4

Views: 517

Answers (3)

Frank DENIS
Frank DENIS

Reputation: 46

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

Upvotes: 2

user216441
user216441

Reputation:

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

Upvotes: 1

Erin Dees
Erin Dees

Reputation: 1677

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

Upvotes: 1

Related Questions