$(window).scroll(function() {
var height = $(window).scrollTop();
if(height > 777) {
$(".div_clone").clone().appendTo(".container2");
}
});
$(window).scroll(function onScroll() {
if ($(this).scrollTop() > 777) {
$('.div_clone').clone().appendTo('.container2');
$(this).off('scroll', onScroll);
}
});
// или
window.addEventListener('scroll', function onScroll() {
if (this.scrollY > 777) {
document.querySelector('.container2').append(
document.querySelector('.div_clone').cloneNode(true)
);
this.removeEventListener('scroll', onScroll);
}
});