img load through on でエラーを取得しようとしていますが、うまくいきません
$(document).on("error","#someid img",
function(){
console.log("Image load error through On");
});
しかし、「バインド」でも同様に機能します
$("#someid img").bind("error", function() {
console.log("Image load error through bind");
});