ビューポート セレクターjQuery プラグインを使用して、いくつかの要素で同じタスクを実行しようとしています。
$('#something').each(function(){
var current = $(this);
if ($(this + ':in-viewport')){
console.log(current.attr('id'));
}
});
私はひどく間違ったことをしていますか?これは私のコンソールが吐き出しているエラーです:
Uncaught Error: Syntax error, unrecognized expression: [object HTMLDivElement]:in-viewport