html ve js kodları aşagıdaki gibidir.
<div class="bilgi">Resim Yükleniyor</div> <img src="ii.jpg" id="resim" alt="">
$(document).ready(function(){
$("img#resim").load(function(){
alert("Resim yüklendi!");
});
}) 6
●411
<div class="bilgi">Resim Yükleniyor</div> <img src="ii.jpg" id="resim" alt="">
$(document).ready(function(){
$("img#resim").load(function(){
alert("Resim yüklendi!");
});
}) attr("src", $('#resim').attr("src")); $(document).ready(function(){
$("img").on("error",function() {
$(this).attr( "src", "resim.jpg" );
})
.attr( "src", $("img").attr("src")); $("#resim").on('error', function() {
$(this).attr('src', 'https://images.unsplash.com/photo-1562101994-0801ac2007fd?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60')
}).attr("src", $('#resim').attr("src"));