> How would I make live work with plugins? With the livequery plugin i
> used
>
> $('.text-edit').livequery('click', function() {
>                 akedit(save_url, options);
>
>         });
>
> akedit is a not a jquery function. How would I make a plugin work with
> this


It should work the same way (unless I misunderstood your question):

$('.text-edit').live('click', function() {
    akedit(save_url, options);
});

Reply via email to