jQuery contains a lot of terribly complicated JavaScript required for dealing with cross browser DOM, but the process of its population often lead to believe that their attempts to replace JavaScript. Nothing could be more of the truth that the simple addition of effects with jQuery alonebut might eventually have to fall to bite the bullet and get your chops JavaScript to zero on. jQuery 1.4 has a number of conventions and optional advanced features that are sure JavaScript smile that experience to the fans. Weve seen as part of the rapid construction. In the same vein is the ability to bind multiple event handlers to functions with a single object literal:
$('p').bind({
mousemove: function(e) {
$(this).text(‘moved to:’ + e.pageX + ‘:’ + e.pageY);
},
mouseout: function() {
$(this).text(‘moved away.’);
},
click: function() {
$(this).unbind(‘mousemove mouseout’);
}
});
As a quick setup, this technique bypasses the need for chaining. I’m sure some jQuery user (like me) will love it, others hate it.

