Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 0.35 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to stop an animation loop in jquery
  2. $(function(){
  3.     $('.interview_media').hover(
  4.         function(){
  5.             console.log('showing arrows');
  6.             $('.hidden').stop(true, true).show(200);
  7.         },
  8.         function(){
  9.             console.log('hiding arrows');
  10.             $('.hidden').stop(true, true).hide(200);
  11.         }
  12.     );
  13. });