CSS
- 18 ответов
- 0 вопросов
5
Вклад в тег
img = el;
$('.b-channel__cover').each(function(i,el){
var img = new Image();
img.onload = function(){alert('картинка существует')};
img.onerror = function(){alert('картинка не существует')};
img.src = $(el).attr('src')
});
var handler = new Handler();
handler.go();
this.go = function () {}
Handler2.prototype = Object.create(Handler.prototype);
Handler2.prototype.constructor = Handler;