jQuery(window).load(function() { "use strict"; //Blog jQuery('#new-all').each(function(i){ var $currentPortfolio = jQuery(this); var $currentInfinite = $currentPortfolio.find('.jw-infinite-scroll'); var $currentIsotopeContainer = $currentPortfolio.children('.list-group'); $currentIsotopeContainer = $currentIsotopeContainer?$currentIsotopeContainer:$currentPortfolio; // Infinite $currentInfinite.find('a').unbind('click').bind('click',function(e){e.preventDefault(); var $currentNextLink = jQuery(this); if($currentInfinite.attr('data-has-next')==='true' && $currentNextLink.hasClass('next')){ var $infiniteURL = $currentNextLink.attr('href'); $currentInfinite.find('.next').hide(); $currentInfinite.find('.loading').show(); jQuery.ajax({ type: "POST", url: $infiniteURL, success: function(response){ //alert(response); var $newElements = jQuery(response).find('#new-all').children('.list-group').hasClass('list-group')?jQuery(response).find('#new-all').children('.list-group').html():jQuery(response).find('#new-all').eq(i).html(); var $newURL = jQuery(response).find('#new-all').find('.jw-infinite-scroll>a.next').attr('href'); var $hasNext = jQuery(response).find('#new-all').find('.jw-infinite-scroll').attr('data-has-next'); if($newElements){ //$newElements=jQuery('
').append($newElements).find('item').css('opacity','0'); if($currentIsotopeContainer.hasClass('list-group')){ $currentIsotopeContainer.append($newElements); jQuery('.group-item-grid-default').find('.post').matchHeight(); }else{ $currentInfinite.before($newElements); } if($hasNext==='false'){ $currentInfinite.attr('data-has-next','false'); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.no-more').show(); }else{ $currentNextLink.attr('href',$newURL); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.next').fadeIn(); } }else{ $currentInfinite.attr('data-has-next','false'); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.no-more') .show(); } setTimeout(function(){ $currentIsotopeContainer.children('.item').css('opacity','1'); },1000); setTimeout(function(){ $currentIsotopeContainer.children('.item').css('opacity','1'); },6000); } }); } }); }); //Blog jQuery('#new-hd').each(function(i){ var $currentPortfolio=jQuery(this); var $currentInfinite=$currentPortfolio.find('.jw-infinite-scroll'); var $currentIsotopeContainer=$currentPortfolio.children('.list-group'); $currentIsotopeContainer=$currentIsotopeContainer?$currentIsotopeContainer:$currentPortfolio; // Infinite $currentInfinite.find('a').unbind('click').bind('click',function(e){e.preventDefault(); var $currentNextLink=jQuery(this); if($currentInfinite.attr('data-has-next')==='true'&&$currentNextLink.hasClass('next')){ var $infiniteURL=$currentNextLink.attr('href'); $currentInfinite.find('.next').hide(); $currentInfinite.find('.loading').show(); jQuery.ajax({ type: "POST", url: $infiniteURL, success: function(response){ var $newElements = jQuery(response).find('#new-hd').children('.list-group').hasClass('list-group')?jQuery(response).find('#new-hd').children('.list-group').html():jQuery(response).find('#new-hd').eq(i).html(); var $newURL = jQuery(response).find('#new-hd').find('.jw-infinite-scroll>a.next').attr('href'); var $hasNext = jQuery(response).find('#new-hd').find('.jw-infinite-scroll').attr('data-has-next'); if($newElements){ //$newElements=jQuery('
').append($newElements).find('item').css('opacity','0'); if($currentIsotopeContainer.hasClass('list-group')){ $currentIsotopeContainer.append($newElements); }else{ $currentInfinite.before($newElements); } if($hasNext==='false'){ $currentInfinite.attr('data-has-next','false'); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.no-more').show(); }else{ $currentNextLink.attr('href',$newURL); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.next').fadeIn(); } }else{ $currentInfinite.attr('data-has-next','false'); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.no-more') .show(); } setTimeout(function(){ $currentIsotopeContainer.children('.item').css('opacity','1'); },1000); setTimeout(function(){ $currentIsotopeContainer.children('.item').css('opacity','1'); },6000); } }); } }); }); //Blog jQuery('#panel3').each(function(i){ var $currentPortfolio=jQuery(this); var $currentInfinite=$currentPortfolio.find('.jw-infinite-scroll'); var $currentIsotopeContainer=$currentPortfolio.children('.loop-content3'); $currentIsotopeContainer=$currentIsotopeContainer?$currentIsotopeContainer:$currentPortfolio; // Infinite $currentInfinite.find('a').unbind('click').bind('click',function(e){e.preventDefault(); var $currentNextLink=jQuery(this); if($currentInfinite.attr('data-has-next')==='true'&&$currentNextLink.hasClass('next')){ var $infiniteURL=$currentNextLink.attr('href'); $currentInfinite.find('.next').hide(); $currentInfinite.find('.loading').show(); jQuery.ajax({ type: "POST", url: $infiniteURL, success: function(response){ var $newElements = jQuery(response).find('#panel3').children('.loop-content3').hasClass('loop-content3')?jQuery(response).find('#panel3').children('.loop-content3').html():jQuery(response).find('#panel3').eq(i).html(); var $newURL = jQuery(response).find('#panel3').find('.jw-infinite-scroll>a.next').attr('href'); var $hasNext = jQuery(response).find('#panel3').find('.jw-infinite-scroll').attr('data-has-next'); if($newElements){ //$newElements=jQuery('
').append($newElements).find('item').css('opacity','0'); if($currentIsotopeContainer.hasClass('loop-content3')){ $currentIsotopeContainer.append($newElements); }else{ $currentInfinite.before($newElements); } if($hasNext==='false'){ $currentInfinite.attr('data-has-next','false'); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.no-more').show(); }else{ $currentNextLink.attr('href',$newURL); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.next').fadeIn(); } }else{ $currentInfinite.attr('data-has-next','false'); $currentInfinite.find('.loading').hide(); $currentInfinite.find('.no-more') .show(); } setTimeout(function(){ $currentIsotopeContainer.children('.ad-box').css('opacity','1'); },1000); setTimeout(function(){ $currentIsotopeContainer.children('.ad-box').css('opacity','1'); },6000); } }); } }); }); });