$('img').error(function() {
$(this).attr('src','');
alert('error');
});
$(...).error is not a function
結果
$('img').on('error', function() {
$(this).attr('src','');
alert('error');
});
だいたい、on
にすればこういうのは解決
$('img').error(function() {
$(this).attr('src','');
alert('error');
});
$(...).error is not a function
$('img').on('error', function() {
$(this).attr('src','');
alert('error');
});
だいたい、on
にすればこういうのは解決