I would have thought you could do it with $('.selector').live ('mousrover', myMouseOverFunc).live ('mouseout', myMouseOutFunc);
On Apr 11, 8:36 pm, Walther <waltherl...@gmail.com> wrote: > I am looking for a way to simulate the actions of the hover (or > mouseenter/mouseleave) whilst using the live method of binding (The > items are dynamic). > > Is there a way to do this or will I need to use the 'old fashioned' > method of unbinding and rebinding? I do not want to use a plugin.