Andrea, when I changed to hover() the stopPropagation() effected
negatively. Once I removed that it started working ok. Also, what is
variable e when passing it to the function? Thanks

On May 9, 11:25 am, andrea varnier <[EMAIL PROTECTED]> wrote:
> not sure but you could try something like this, to get more
> specific...
>
> $('#Main_Nav li:has(ul)').mouseover(function(e) {
>         e.stopPropagation();
>         $(this).children('ul').slideDown('normal');}).mouseout(function(e) {
>
>         e.stopPropagation();
>         $(this).children('ul').slideUp('normal');
>
> });
>
> btw you don't need the .end() method at the end ;)

Reply via email to