I just switched my (rather limited) JavaScript from YUI to jQuery.
jQuery took a little (a couple hours) to learn how to write something close to idiomatic code. My new code is much much smaller and easier to read.
Why did I switch away from YUI you might ask?
A couple reasons:
- jQuery has a bunch of idiomatic constructs to make what I’m doing here much easier: Example:
$('table tbody tr:even').each(function () {$(this).addClass('alt')}); - jQuery is smaller.
- I use YUI at work.
- I just wanted to try something new.
Ciao!

4 Comments
Welcome to jQuery. Be sure to join the Google Group and also follow us on Twitter or identi.ca at @jquery
Rey - jQuery Team
@Rey Bango:
So, how about some URLs?
I found the twitter jquery, I think.
Ciao!
Sure thing:
jQuery:
http://jquery.com
jQuery UI:
http://ui.jquery.com
jQuery Docs:
http://docs.jquery.com
jQuery Google Group:
http://groups.google.com/group/jquery-en
jQuery UI Google Group:
http://groups.google.com/group/jquery-ui
books:
jQuery In Action: http://is.gd/245t
Learning jQuery: http://is.gd/245s
@Rey Bango:
Thank you!