I'd like to show a gradient on hover.over and then remove it on hover.out. Is there a clean way to do that?
Ex: $('.navbarItem').hover( function () { $(this).gradient({ from: 'efefef', to: 'dddddd' }); }, function () { // What goes here? } );
Thanks a lot, Alex
More information about formatting options
How do you clear a gradient?
I'd like to show a gradient on hover.over and then remove it on hover.out. Is there a clean way to do that?
Ex:
$('.navbarItem').hover(
function () {
$(this).gradient({ from: 'efefef', to: 'dddddd' });
},
function () {
// What goes here?
}
);
Thanks a lot,
Alex