0
kicks
Fun With jQuery Deferred
If you've upgraded to the recently released jQuery 1.5 you may have heard about the fancy new AJAX facilities that allow you to define things like this:
var jax = $.ajax({
url: '/some/url'
})
jax.success(function() {
alert("It worked!");")
});