Help transcoding simple jQuery to mootools
Posted
by Moak
on Stack Overflow
See other posts from Stack Overflow
or by Moak
Published on 2010-04-07T07:12:31Z
Indexed on
2010/04/07
7:23 UTC
Read the original article
Hit count: 613
$(".container").hover(
function(){
$(".child-1").hide(0);
$(".child-2").show(0);
},function(){
$(".child-1").show(0);
$(".child-2").hide(0);
});
A project I have requires that I use mootools, but I never used mootools, and jquery makes much more sense to me. Can someone show me how this example would look like in mootools? thanks
© Stack Overflow or respective owner