We'll return to the short syntax. (Yes, this is the same as the first slide.)

Results

function callback(x) {
    log('received "' + x + '"');
}
 
function request() {
    $.get('request', callback);
}
 
request();