$(document).ready(function() { $(".tile").hover( function() { $(".tile").stop().animate( { "background-color": "rgba(100, 100, 130, 0.2)", width: "300px;" }, 300); console.log("enter"); }, function() { console.log("leave"); $(".tile").stop().animate( { "background-color": "rgba(40, 40, 40, 0.4)", width: "400px;" }, 300); } ) })