ready

Release 1.1 - ...

The ready property is used to pass a handler that will be called when the ajax call returns:

Javascript CopyCode image Copy Code
sml.ajax({
    busy: true,
 
    ready: function(){
       var s = sml.get('data');
       jQ.find(".tweets").html(s).slideDown();
    }
});