Hi guys,

if you go to this  http://www.taylorsofstjames.co.uk site   and rapiding go
on and off the "seasoned charts" menu you will notice when you take your
mouse away, the animation just keeps going.

I  don't know why it's so messy but I hope someone can help .
The code is below  :

        <script>
                
                $('document').ready(function(){
                        
                        $('#SeasonedCharts ul').hide();
                        $('#Products ul').hide();
                        
                        $('#SeasonedCharts').hover(over, out);
                        $('#Products').hover(p_over, p_out);
                        
                        function over(event){
                                $('#SeasonedCharts ul').toggle('slow');
                        }
                        function out(event){
                                $('#SeasonedCharts ul').hide();
                        }
                
                        function p_over(event){
                                $('#Products ul').toggle('slow');
                        }
                        function p_out(event){
                                $('#Products ul').hide();
                        }
                });
                
        </script>
-- 
View this message in context: 
http://old.nabble.com/Not-so-smooth-drop-down-tp26498246s27240p26498246.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to