それぞれを使用してDOM要素を反復処理していますが、要素が.eachループ内で使用可能になると、jQueryバインドイベントを受け入れません。
$('#products .page_item').mouseover(function(){
console.log('this works, adding the mouseover to every selected element');
});
$('#products .page_item').each(function(index, element){
element.mouseover(function(){
console.log("this throws 'not a function'");
});
});
イベントをそれらにバインドできるように、各要素を.eachループ内で使用可能にするにはどうすればよいですか?
皆さんありがとう。
(私はこの方法で要素を反復処理しているので、条件付きでいくつかの要素をバインド、FWIWから除外できます。)