I have a menu structure:
<ul id="nav">
<li id="button1" class="active"><a href="#page-1" title="creative">creativ</a><
<li id="button1"><a href="#page-1" title="creative">creativ</a></ul>
And i add background image every .active class:
#nav li.active a{cursor:default;
background:url(images/nav-li-a_hover.png) no-repeat bottom center;
padding-bottom:5px;}
It's working. But i want when i click a menu item, get background-image with fade effect. How can i do this via jQuery or CSS3?
