Hello,

i want to use two functions but i have a little problem with them.
I have a div with hover event.
When mouse in or out , i use the fadeto() function.
When i drag the div, i use the draggable function.

The problem is when i drag the div, the function fadeto run (in and
out, ............)

        $("#navigation").hover(function () {
           $(this).fadeTo("slow", 1.0);
           },function(){
           $(this).fadeTo("slow", 0.6);
        });

        $("#navigation").draggable();

i just want this :
fadeto("slow",1.0) when mouse in
fadeto("slow",1.0) when mouse out

and draggable when drag (opacity is 1 because mouse in)

Is there a solution ?
Thank

Stephan

Sorry for my poor english.

Reply via email to