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