\"#business\" is currently set to background: #323232; How can I change it to #000; after I click on \"#business\" and back to 323232 once the menu is closed?
$
The css function is used for changing CSS properties like background.
css
$('html').click(function() { $('#businessmenu').hide(""); $('#busniessmenu').css('background-color', '#323232'); }); $('#business').click(function(event){ event.stopPropagation(); $(this).css('background-color', '#000'); });