記事要素にCSS3トランジション効果を実装していますが、イベントリスナーtransitionendは、jQueryではなく純粋なJavaScriptでのみ機能します。
以下の例を参照してください。
// this works
this.parentNode.addEventListener( 'transitionend', function() {alert("1"); }, true);
// this does not work
$(this).parent().addEventListener( 'transitionend', function() {alert("1"); }, true);
誰かが私が間違っていることを説明できますか?