Hi All,
I was wondering if someone could help me translate this code:

$('.hover_info').hide();

$('.file').hover(
        function() {
                $(this).find('.hover_info').slideDown(220);
        },
        function() {
                $(this).find('.hover_info').slideUp(220);
        }
);

into something that works with the livequery plugin (http://
brandonaaron.net/docs/livequery/). Both of these are called on page
load. Everything I try seems to be throwing errors. I have tried along
the line of:

$('.hover_info').livequery().hide();
$('.hover_info').livequery('load',hide());

Any tips would be greatly appreciated.

Thanks

Reply via email to