1

モバイル デバイスで表示したときに、次の世代のワードプレス プラグインのライトボックス効果を無効にするにはどうすればよいですか?

プロジェクトはこちら: www.brendanbrowne.com

4

1 に答える 1

0

これが私の解決策です:

私が知る限り、1.9.1以下にはjQueryブラウザがまだあります(非推奨ですが). jQuery 2.0 を使用している場合は、jQuery ブラウザーをプラグインとしてダウンロードする必要があります。

var isiPad = /ipad/i.test(navigator.userAgent.toLowerCase());
if (isiPad)
{
    $('.ngg-gallery-thumbnail a').removeAttr('rel');
}

if(jQuery.browser.mobile)
{
    $('.ngg-gallery-thumbnail a').removeAttr('rel');
    //alert('You are using a mobile device!');
}
于 2013-07-22T22:14:01.590 に答える