[jQuery] Sortables and .live

[jQuery] Sortables and .live


Hello, group!
I'm using jQuery 1.3.1, UI Core 1.6rc6, and UI Sortable 1.6rc6 on a
page.
I couldn't find any documentation on how to use the new .live event
with the sortables. It's got to be possible, right?
Here's my sortable code:
    $("#the_list").sortable({
        handle : '.handle',
        axis: 'y',
        update : function () {
            var order = $('#the_list').sortable('serialize');
            $("#info").load("process-sortable.php?"+order);
        }
    });
I'd appreciate any help! Thanks!