I'm using hover() as suggested in the documentation:
$("#div").hover(
function(){$(this).addClass('cie_hover');},
function(){$(this).removeClass('cie_hover') ;}
);
Is there a way I can use more functions on other objects? And if so what would be the syntax to introduce functions in array?
What I would like to do with that is change the class of the div I'm hovering and sildeDown()
another one elsewhere with that same hover()
action.