I have dropdown menu using jquery function like this:

$(document).ready(function()
{
    $('li').hover(
    function()
    {
      var timer = $(this).data('timer');
      if(timer) clearTimeout(timer);
      $(this).addClass('over');
    },

    function()
    {
      var li = $(this);
      li.data('timer', setTimeout(function(){ li.removeClass('over'); }, 500));
    });
});

Preview: http://jsbin.com/onawur

The function will hide sub menu after 500 ms. I have no idea, how to make submenu show after 500 ms too. Please help..

link|improve this question

This function ONLY hide sub menu after 500ms. I want sub menu show and hide after 500 ms. not only hide after 500 ms, – Zulkhaery Basrul Dec 16 '11 at 0:04
Please provide the corresponding css for your class over – Shad Dec 16 '11 at 0:17
@Shad: update my question. – Zulkhaery Basrul Dec 16 '11 at 1:52
feedback

2 Answers

up vote 1 down vote accepted

As a modification of your existing code:

$(document).ready(function()
{
    $('li').hover(
    function()
    {
      var timer = $(this).data('timer');
      if(timer) clearTimeout(timer);
      var li = $(this);
      li.data('showTimer', setTimeout(function(){li.addClass('over'); }, 500));
    },

    function()
    {
      var showTimer = $(this).data('showTimer');
      if(showTimer) clearTimeout(showTimer);
      var li = $(this);
      li.data('timer', setTimeout(function(){ li.removeClass('over'); }, 500));
    });
});
link|improve this answer
Thanks @Shad, its works. – Zulkhaery Basrul Dec 16 '11 at 2:45
feedback

Seems like a perfect use-case for debouncing

http://code.google.com/p/jquery-debounce/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.