Hi Pete,

You don't need to use .hover() with an empty function. You can use .mouseleave() in jQuery 1.3.x or .bind('mouseleave') in 1.2.6.

--Karl

____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Feb 18, 2009, at 12:28 AM, pedalpete wrote:


Ok, actually got this working with the following code

[code]
        $('form#filterList span.holdDate').click(function(){
                $('span#datePickers, div.datepicker').slideDown('fast');
                        $('span#datePickers, div.datepicker').hover(
                        function(){},
                        function(){
                        $('div.datepicker').slideUp('slow');
                        });
                },
                function(){


        });
[/code]

Reply via email to