以下のコードをjQueryで使用していますが、これは機能します
$('.s_switcher').hover(function() {
$(this).find('.s_options').stop(true, true).slideDown('fast');
},function() {
$(this).find('.s_options').stop(true, true).slideUp('fast');
});
コードを置き換えて MooTools と Jquery を追加した後、結果がなく、コードが機能しません。
//no conflict jquery
jQuery.noConflict();
//jquery stuff
$jQuery('.s_switcher').hover(function() {
$jQuery(this).find('.s_options').stop(true, true).slideDown('fast');
},function() {
$jQuery(this).find('.s_options').stop(true, true).slideUp('fast');
})(jQuery);
誰かが助けてくれるかどうか教えてください、ありがとう