I'm beginning this blog with a jquery plugin I had to develop a few weeks ago for a project I'm working on.

Even though jQuery is a great javascript library, its latest version brings a queue control, it doesn't work for different elements. That is, if you had something like

$("#myDiv").animate({fontSize: "30px"}).animate({marginLeft: "40px"})

it would queue the animations. But what if you wanted to be able to queue different elements (just like Scriptaculous allows)? Well, that's the reason why I developed the jQuery Fx Queues plugin. So go ahead and check it out, and feel free to send me your comments or any bugs you find.