arrays - JQuery hover() possibilities? -
I am using the hover () as suggested in the document:
$ ("#div"). Hover (function {$ (this) .addClass ('cie_hover');}, function () {$ (this) .removeClass ('cie_hover');});
Is there any way that I can use more functions on other objects? And if so, will there be a syntax for presenting the function in the array?
What I would like to do with it, I can change the class of the board which I am moving and sildeDown ()
elsewhere with the other hover ( )
action.
These are just the main function of the call back function function you want:
$ ('# Div') Hover (function () {$ (this) .addClass ('cie_hover'); $ ('sliding ();}, function () {$ (this) .removeClass (' cie_hover '); $ (' #otherdiv ').
Comments
Post a Comment