0

追加で問題が発生しています。

append を使用して div を追加します。

Chrome ブラウザーは実行されていますが、Firefox では実行されていません。

次のコードの追加 (フォーマットされたコード):

var $j = jQuery.noConflict();
$j(window).load(function() {
$j('#slider').nivoSlider();

$j("ul.dropdown li").hover(function(){

    $j(this).addClass("hover");
    $j('ul:first',this).css('visibility', 'visible');

}, function(){

    $j(this).removeClass("hover");
    $j('ul:first',this).css('visibility', 'hidden');

});

$j("ul.dropdown li ul li:has(ul)").find("a:first").append(" » ");

$checkParent = $j('.menu-treatment .wpcf7-checkbox');
$checkParent.find('span').mouseover(function() {
    $j(this).find('.tooltip').stop(true, true).fadeIn();
    $j(this).find('.tooltip2').stop(true, true).fadeIn();

    $j(this).mouseleave(function(){
        $j(this).find('.tooltip').stop(true, true).fadeOut();
        $j(this).find('.tooltip2').stop(true, true).fadeOut();

    })
})
$checkParent.find('.wpcf7-list-item:first-child').append('<div class="tooltip" style="display: none;">Tune your body, mind, soul, and emotion with the ancient Tibetan Singing Bowl <div class="panah-kiri"></div></div>');

});
4

0 に答える 0