$(function() { $("#header").hover(function() { $('#header').css('background','rgba(0,0,0,0.6)'); }) $("#header").mouseleave(function() { $('#header').css('background','rgba(0,0,0,0)'); }) });