- How to stop an animation loop in jquery
- $(function(){
- $('.interview_media').hover(
- function(){
- console.log('showing arrows');
- $('.hidden').stop(true, true).show(200);
- },
- function(){
- console.log('hiding arrows');
- $('.hidden').stop(true, true).hide(200);
- }
- );
- });