I've started playing around with jQuery along with the rest of the world it seems and all I can say is WOW. Working with it has been straight forwards and simple.
There's a couple of things out of the box that I like about it, but mainly the fact it comes as one .js file so doesn't matter what affect you want its there. In regards to it's simplness here some quick examples to get going:
Comments (Comment Moderation is enabled. Your comment will not appear until approved.)
[Add Comment]
Don't ignore one of the most powerful aspects of jQUery, it's unobtrusiveness. Were someone to have JS disabled, that code wouldn't work at all. A better way to do it would be to use a script block in your head:
$(document).ready(function(){
$('a').fadeOut('slow');
return false;
});
Or some variation using a better selector than just an a tag (which would affect all A tags on the page).
Also - check out ui.jquery.com for some more jQuery goodies!
http://www.thecrumb.com/2007/07/13/5-minute-jquery...
Cheers,
Karl