<script>
$(function(){
var total_images = $("img");
$.each(total_images, function(i, one_div) {
$(one_div).attr("src", $(one_div).attr("src"));
$(one_div).on("error", function(e){
console.log($(this).attr("src")+", this image not found..");
console.log($(this).attr("src")+", trying agin to found..");
$(one_div).attr("src", $(one_div).attr("src"));
});
});
});
</script>
$(function(){
var total_images = $("img");
$.each(total_images, function(i, one_div) {
$(one_div).attr("src", $(one_div).attr("src"));
$(one_div).on("error", function(e){
console.log($(this).attr("src")+", this image not found..");
console.log($(this).attr("src")+", trying agin to found..");
$(one_div).attr("src", $(one_div).attr("src"));
});
});
});
</script>
0 comments:
Post a Comment