$("li").hover(
function () {
// do x
},
function () {
// do y
});
.. thats for hover, how would I do the same for click toggle, i.e do x on click and y on second click?
Manythanks
.. thats for hover, how would I do the same for click toggle, i.e do x on click and y on second click? Manythanks |
|||
|
|
|
||||
|
|
|
|
||||
|
|
One problem with toggle() is that it automatically calls
|
|||
|
|