[jQuery] Re: how to control a imageover making one image to fade in a menu and fade out when....

2008-09-09 Thread mbraybrook
As for a proper example i can't do that too well as i don't have any original code to work with but something like this may work: html: div id=container img src=path/to/img.ext/ div id=menu class=menu !-- menu stuff here -- /div /div JScript: script //Add a listener to the

[jQuery] Re: how to control a imageover making one image to fade in a menu and fade out when....

2008-09-09 Thread Aaron
ok this is what I have right now in javascript: $(document).ready(function(){ $(document).pngFix(); $(#picmenu).hide(); $(#userimage).mouseover(function(){ $(#picmenu).fadeIn(slow);});$(#userimage).mouseout(function(){ $(#picmenu).fadeOut(slow);});