$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
$(".show-more").click();
}
});
function initShowMoreLink() {
$(".show-more").click(function () {
var that = this;
$.ajax({
url: $(that).data("url"),
type: "GET",
success: function (response) {
$(that).closest(".row").replaceWith(response);
initShowMoreLink();
calculateLikes(response);
}
});
return false;
});
}
var $row = $(that).closest(".row");
$row.fadeOut('fast', function() {
$row.replaceWith(response);
$(this).fadeIn('fast');
});
$('.parent').on('click', '.show-more', function() {
// .parent - родительский контейнер для .show-more, который не меняется при смене контента
});