vote up 62 vote down star
34

There seem to be a lot of choices now for DOM manipulation, Ajax and effects. Has anyone any experience of the different options and their pros and cons?

flag
show 5 more comments

61 Answers

vote up 2 vote down

JQuery. Can't live without it.

link|flag
vote up 2 vote down

Jquery for the syntax and readability. The availability of 3rd party plug-ins makes my life easier every day.

link|flag
vote up 2 vote down

jQuery is in general the best javascript library out there - it's nearly a new language, and I mean that in a good way - the syntax is crazy cool, and makes so many shortcuts available to you that you end up spending about half the time writing something up through jQuery that you would've in straight javascript.

link|flag
vote up 2 vote down

I prefer a mix of ASP.NET AJAX and jQuery. jQuery does a great job of allowing you to traverse the DOM and do animations but asp.net ajax follows the prototype model, which allows you to define client side objects similar to the ones you would define server side.

And as a side note, if you are using ASP.NET with it, you'll get great integration support with the server side.

The one con with mixing frameworks is they all pass the 'this' object around, so when you are inside a jQuery method, it'll overwrite your asp.net ajax 'this'.

link|flag
show 1 more comment
vote up 2 vote down

vote for Jquery, easy, straight forward, lots of plugins, and well documented

link|flag
vote up 2 vote down

İ prefer YUI in my commercial and personal works. Because it isn't only a library it is also a development-school with a great documentation, api-doc, too many examples, brilliant articles and patterns.

It almost has all feautures which other libraries have. They are mostly implemented chain feauture into YUI3 (like in JQuery)

Btw i'm a big fan of Douglas Crockford :)

My personal choices (with order) : YUI, JQuery

link|flag
vote up 2 vote down

I would suggest base2. Some reasons:

  • It's standards based, thus future proof.
  • It has great documentation

It's maybe not the most popular library, but the code is rock solid.

link|flag
vote up 2 vote down

jQuery. It's easy to learn, well documented and has a lot of nice plugins. I just can't imaging my life without jQuery.

link|flag
vote up 1 vote down

I've used JQuery and loved it for basic JavaScript needs, but if you have a project that is going to require a full-fledge applicaiton UI/desktop application feel then ExtJs is the best hands down. The way I see it is JQuery is great for smaller JavaScript/AJAX needs and ExtJS is the only way to go for the bigger JavaScript needs.

link|flag
vote up 1 vote down

I didn't realize that there was work being done on a jQuery library for Rails, jRails. It's definitely starting to look like jQuery is the framework of choice for most everyone.

link|flag
vote up 1 vote down

Depends on what you wanna do. jQuery is really nice but DOJO comes with a bunch of beautiful and easy to use Widgets (for example for calendars).

DOJO can also understand Django's template language (I work in Django a lot) which makes displaying data dynamically on the website a pleasure. Their way to attach widgets also works really well with Django's forms module.

But DOJO is a little heavy. So if you want a lean system go for jQuery.

link|flag
vote up 1 vote down

I tend to lean on jQuery for the selector stuff and YUI for the widgets and its events library. The YUI 3.0 evolution of CustomEvents looks even nicer...

link|flag
vote up 1 vote down

As every other question in life, the answer is: it depends.

If you want to hack together some minor JS, I would probably recommend jQuery.

If you want to build a serious gmail-esque RIA, Dojo might be worth a serious look.

link|flag
vote up 1 vote down

jQuery - easy to use with a great community and documentation.

link|flag
vote up 1 vote down

If you want a library with a small footprint there's no other choice but MooTools in my books. MooTools is 60Kb compressed for the core. You can add extra features if you want, but you have flexibility in choosing exactly the features you want and nothing more from here and even have the code compressed for you.

MooTools is fast and powerful, but tiny at the same time. I highly recommend it for all websites that want their UI to have some extra punch that makes people Wow.

link|flag
vote up 1 vote down

My vote is for JQuery...

link|flag
vote up 0 vote down

Adobe Spry has some very nice effects, I use it for fading items in and out.

link|flag
vote up 0 vote down

I think it depends on the project. If you plan on manipulating groups of elements a lot, JQuery wins hands down. If you want a solid basis to build a JavaScript library on, Prototype is an excellent choice.

link|flag
vote up 0 vote down

Looking back at my projects, I find myself mixing JQuery (for core functions) with YUI (for the nifty widgets).

link|flag
vote up 0 vote down

YUI anytime

link|flag
vote up 0 vote down

Adobe Spry from Adobe Labs, its still in prerelease (1.6.1) but it fully functional, easy to use, easy to begin, easy to understand, simply it return response from server as XML so you can manipulate it using many spry function.

also it provide nicely done effects that similar with scripta-cool-us :D, it has several widgets to try from accordion into tab panel.

really simple for beginner especially if you have Dreamweaver CS3 (or CS4 Beta).

link|flag
vote up 0 vote down

I think each of them has strength and weaknesses, take the best part from each for a specific task is the smart way.

for eaxample, though i love Jquery and i use it a lot, but to perform frequently ajax request based on timer i use prototype as it has built in, and tested on the battle ajax perodical adapter rather than creating extends function in jquery

link|flag
vote up 0 vote down

jQuery and Mootools. jQuery has a lot of support and is being used by a lot of people which should ensure that its development lasts. I usually use this for clients that I really don't want to spend too much time :p

Mootools has a cute name. Kidding. I like it because it is OO and have used in a number of personal projects of mine :p

link|flag
vote up 0 vote down

Fork Javascript -- I've looked at those other libraries and they all seem to try to do "everything" with crazy $(x) syntaxes and things. Fork is lean & mean and you can just use bits & pieces.

link|flag
vote up 0 vote down

I had a very brief look into this recently and found that jquery and prototype were pretty similar to all intense purposes. I didn't spend a great deal of time looking behind the scenes but in terms of their syntax and semantics and what they could be used for they were fairly similar. I personally, didn't like their semantics. One of the most experienced programmers I know reccomended mochikit and I see it hasn't been mentioned by anyone here - I hadn't heard of it either. As a programmer with a background in app languages as opposed to scripting languages I found it refreshing and pretty powerful.

Does anyone know of an opensource drag and drop ide (ala flash) that can be used with js libraries? Does anyone fancy having a go at making one if there isn't one already?

link|flag
vote up 0 vote down

Mootools.

It is said by many that:

Mootools is the best overall, JQuery is the best for beginners, Dojo gives the most power, and Ext gives the best UI.

In my experience, Mootools has as much power as I have ever needed, makes for much much better code, and is easier and more consistent once you get to understand their conventions.

But they don't have nearly as good a hype machine as JQ. Most move from JQ to Moo - sort of like moving from a Honda to a Harley. Its no harder to ride, but you've gone up a step.

As Mootools more matures I'd expect some hype to come with it, which is the only thing Moo lacks.

link|flag
vote up 0 vote down

Easily I would say EXTJS. Although JQuery has a lot of useful features like method chaining, EXTJS has an awesome standardized UI Library. They also have easy to use closure support by implementing a createDelegate function. Overall, EXT gives you the ability to customize your package, so as you don't have to load every class, and at the same time easily gives you as much power as JQuery but with at least a little more standardization of DOM structure and class names.

link|flag
show 1 more comment
vote up 0 vote down

Jquery 1) usability 2) functionality 3) community 4) documentation

link|flag
vote up 0 vote down

I suggest ExtJS with flot and DateJS.

link|flag
vote up -1 vote down

I recomend you stay away from DOJO. It is bloated and full of bugs. Most of the widgets take ages to download from your site, they open a bazillion connections to your server. ExtJS is a good alternative to DOJO, JQuery has alot of plugins that acomplish similar things, but you need to know what you want and hunt them down. For lighter stuff JQuery and MochiKit are the best. My personal choice is MochiKit.

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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