dpiearcy Posted December 17, 2012 Share Posted December 17, 2012 My first time posting in the javascript forum! I'm usually over looking for help with php. Anyway, I decided to make a really cool menu using some jquery I have used for other applications. Just a slide down box. Here's the code: <script language="javascript" type="text/javascript"> function toggleSlideBox(x) { if ($('#'+x).is(":hidden")) { $(".editBox").slideUp(200); $('#'+x).slideDown(300); } else { $('#'+x).slideUp(300); } } </script> Obviously the div class editBox when clicked (it's a # link) will slide the box down and in that box is just another div so I can put anything I want in there. Currently the only way to close that box is to click the link again. Is there a way to edit this so that is will slideUp on mouse leave? No more hover no more slide down. Link to comment https://forums.phpfreaks.com/topic/272102-slidebox-help/ Share on other sites More sharing options...
kimi2k Posted December 18, 2012 Share Posted December 18, 2012 Try to experiment with .mouseout() http://api.jquery.com/mouseout/ or .mouseleave() http://api.jquery.com/mouseleave/ Link to comment https://forums.phpfreaks.com/topic/272102-slidebox-help/#findComment-1400112 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.