У меня есть вот этот jQuery код:
$(window).on("load", function(){
$(".img-one").height($(".img-two").eq(0).width());
$(".img-one").css("width", "auto");
});
$(window).resize(function(){
$(".img-one").height($(".img-two").eq(0).width());
$(".img-one").css("width", "auto");
}).trigger("resize");
Как можно объединить эти .on
и .resize
включительно .trigger
?