Fade in and out

http://stackoverflow.com/questions/7302824/animating-addclass-removeclass-with-jquery

by Rimian Perkins

HTML

<div id="test" class="off"></div>

SCSS

#test{
    background-color: blue;
    width: 100px;
    height: 100px;
}

JavaScript

$('#test').click(function(){    
    $(this).fadeOut(50, function(){
        $(this).fadeIn(99);
    });
});