up vote 12 down vote favorite
3
share [g+] share [fb]

I'm gearing up to do some AJAX style client side Javascript in the near future and I've heard rave reviews of JQuery when it comes to this realm. What I'm wondering is:

  • What are all the cross browser Javascript libraries out there?

If you've used something, please share your experiences. And do your best to avoid bringing religion into the subject.

link|improve this question

35% accept rate
feedback

17 Answers

An excellent resource is Jeff Atwood's post on javascript libraries: http://www.codinghorror.com/blog/archives/001163.html

He lists:

  1. Prototype (http://www.prototypejs.org/) and Script.aculo.us (http://en.wikipedia.org/wiki/Script.aculo.us)
  2. JQuery (http://en.wikipedia.org/wiki/JQuery)
  3. Yahoo UI Library (http://en.wikipedia.org/wiki/Yahoo!_UI_Library)
  4. ExtJS (http://extjs.com/)
  5. Dojo (http://dojotoolkit.org/)
  6. MooTools (http://mootools.net/)
link|improve this answer
feedback

ALL the cross browser Javascript libraries out there? You do realize that there are well over 100 libraries out there, so you should narrow this down a little, imo.

A good place to start is with Wikipedia's Comparison of JavaScript frameworks, which covers Dojo, Ext, jQuery, midori, MochiKit, MooTools, Prototype & script.aculo.us, qooxdoo, YUI, and SweetDEV RIA.

link|improve this answer
feedback

jquery.

( Vote )

link|improve this answer
feedback

prototype FTW

I do like JQuery, but prototype serves my needs most of the time. It may just be because I'm more familiar with it, but I seem to get stuff done faster in Prototype than in jQuery

link|improve this answer
feedback

Loads!

JQuery, Prototype, ExtJS, Dojo, Mootools, YUI, Mochikit, the list goes on!

JQuery is very popular, and an excellent choice, however some frameworks are better for some things, and others better for others. If you could give us a better idea of what you want to do, or how you will be using it (or even which other languages you use) we'd be able to give you a nudge towards one or the other.

link|improve this answer
feedback

If you want to jump on the same bandwagon everyone else does, jQuery is the end-all, be-all. You don't have to think, just listen to everyone else. :P

Personally, I use and love MochiKit. It seems to do everything jQuery does, but the philosophy is a bit different and the community is by far smaller. There are not tons of additional plugins, but there are some. It was designed with a lot of Pythonic style and functional programming constructs, so if that sounds interesting to you, you might want to take a look.

link|improve this answer
feedback

The list that Dori posted is pretty comprehensive, and I don't think that its possible to list all the libraries out there since there might be one being written even as I type (it seems to be a passion for some people).

I feel that going with jQuery and/or prototype will probably get you off the ground and building neat stuff pretty quickly, and chances are that you will fall in love with them as so many of us have.

Gucci had Thomas Fuchs (the creator of Scriptaculous) create their website without using Flash, but check it out, it looks amazing for being JavaScript / CSS only:

http://www.gucci.com

Here's a post about it:

http://ajaxian.com/archives/gucci-relaunches-on-scriptaculous

These libraries are so powerful and versatile (with some nice plugins) that you won't "hit the wall" and start looking to other libraries anytime soon.

I have also seen people do some nice stuff with Dojo and extJS, but I have never worked with them myself.

link|improve this answer
feedback

have a look at mootools

link|improve this answer
Ported from moo to jquery. Found moo to be slow as well as overweight codebase. ( Not to mention significant dom pollution and breaking of standard object classes language wide ) – Kent Fredric Sep 19 '08 at 0:08
feedback

jQuery. Don't look any further.

link|improve this answer
Yeah, why think for yourself when everyone else has done the thinking, right? :P jQuery rocks, but people should make informed decisions rather than jumping on the bandwagon. – Jason Bunting Sep 19 '08 at 1:15
feedback

I can't think of doing any javascript development without using JQuery (also take a deep look to JQuery UI).

link|improve this answer
feedback

jquery is a good choice, it leans towards the 'skinny and speedy' side, and allows for some fantastic DOM manipulation.

link|improve this answer
feedback

I like jQuery. Prototype is very similar. There are several others but I highly recommend you evaluate them yourself.

link|improve this answer
feedback

I prefer Mootools because it is lightweight and is based on Prototype, but like Jay said you should check them out for yourself.

link|improve this answer
feedback

Yahoo UI Library rules!

link|improve this answer
feedback

See also a thread on cross-browser GUIs

link|improve this answer
feedback

ot popular ones are jQuery, DojoToolkit, Prototype.js (with ScriptAculous) and MooTools. I'd encourage you to test out MooTools unless you're on ASP.NET in which case I'd encourage you to check out the project I am working on (Ra-Ajax) which is a fully server-side binded Ajax Framework for ASP.NET...

link|improve this answer
feedback

I want to report this almost unknown library : BBC Glow

Other libraries praise for bells and whistles.

Glow annoncement is about cross browser support. They wrote a clear statement about their goals, and there is also a browsers' support table

imho it is a solid starting point.

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.