Advertisement
iamakulov

Untitled

Sep 11th, 2014
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.24 KB | None | 0 0
  1. $("selector").on("mouseenter", function() {
  2.     var timerId = setTimeout(yourCallback, 250);
  3.     $(this).data("timerId", timerId);
  4. }).on("mouseleave", function() {
  5.     var timerId = $(this).data("timerId");
  6.     clearTimeout(timerId);
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement