[jQuery] Events - Live -v- Livequery

[jQuery] Events - Live -v- Livequery


Hi all,
I normally do this with livequery:
        $('.mylink').livequery(function(event) {
            $(this).mycustomFunction();
        });
So any new .mylink's on a page would also be bound with my custom
function.
How can I do this with the new LIVE event? or is it even possible?
Thanks in advance!