<textarea id="text" rows="5" cols="25"></textarea> <span id="fade">fade</span>
$("#fade").click(function () {  
    $("#text").fadeIn(31000, function () {   
        $("#text").css('background-color', 'red');         
    });      
    return false;    
}); 
Why in this example fadeIn doesnt working? How can i make it?
 
     
     
     
    