Jqueryでいくつかのコードを書いていますが、Jqueryが見つからない理由があります。 $をJqueryに変更しても、同じエラーが発生します。私がそれを純粋なJSに変更すれば、それについてのコメントはどうですか?Jqueryが見つかりません
var listener = throttle(300, function() {
slotsAtlantic.forEach(function (item) {
var $item = jQuery('#' + item.id);
if ($item.length) {
var $parent = $item.parent();
var index = slotsAtlantic.indexOf(item);
if ($parent.is(':visible') && ((window.scrollY || window.pageYOffset) >= ($parent.offset().top - jQuery(window).height() - 300))) {
googletag.cmd.push(function() {
googletag.pubads().refresh([item.slot]);
});
slotsAtlantic.splice(index, 1);
}
}
});
});
を、次のようなスクリプトタグを持っている必要がありますか? –
HTMLにjQueryスクリプトタグがありますか? – litel
http://www.w3schools.com/jquery/jquery_get_started.asp – DDan