Trying to convert JQuery to Mootools - show hide using mouseenter and mouseleave
Posted
by dtour
on Stack Overflow
See other posts from Stack Overflow
or by dtour
Published on 2010-04-08T03:34:01Z
Indexed on
2010/04/08
3:43 UTC
Read the original article
Hit count: 494
I am trying to port the code below to mootools 1.1 code but am having no luck
jQuery(document).ready(
function(){
jQuery("div#fpss-nav_activator").bind("mouseenter",function(){
jQuery("div#navi-outer").stop(true, true).show("slow");
}).bind("mouseleave",function(){
jQuery("div#navi-outer").stop(true, true).hide("slow");
});
});
© Stack Overflow or respective owner