LiveQuery has two types of "queries": event and function. A function based LiveQuery fires a given function when an element is added to the DOM and another function, if given, for when an element is removed from the dom. The function based LiveQuery is not attached to a particular event. The docs are here: http://docs.jquery.com/Plugins/livequery
-- Brandon Aaron On Apr 26, 4:12 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > correct me if i'm wrong but i think livequery needs to know on which event > type it should be attached to: > > so something like this _ > > $("#pagetitle") > .livequery('load',function() { > //alert($(this).attr("class")); > $("title").text($(this).attr("class")); > return false; > }); > > see the doc for more info:http://brandonaaron.net/docs/livequery/