Javascript
$(document).ready(function () {
    $.ajax({
        url: 'http://www.example.com/article/123',
        success: function(data) {
            // Append the returned result to a specefied element
            $('ul').html(data);
        }
    });
    // Setup jcarousel on the ajax target
    $('ul').jcarousel();
});
HTML