$(function() {
    $("#id_title").autocomplete("/articles/term", {
        after: function(input, text) {
            alert(text);
        }
    });
});

