Jump to content

Slidebox Help


dpiearcy

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.