var disableMenuFade = false; $('#theMenuId,#theUserImage').mouseover(function(){ disableMenuFade = true }).mouseout(function(){ disableMenuFade = false });
On Jan 9, 12:48 pm, Aaron <shyhockey...@aol.com> wrote: > HI, I am working on a website. A social networking site. > > I am making the account page. I need to fade in a menu when the user > mouse is on the users image. > > Now I want to check if the users mouse is either on the user image > or on the menu to not fade out else if the user mouse is not on either > user image or the menu then the menu should fade out. > > how can I do this??? should I just use a if statement? > > any help??