I know this is a question that has been asked several times, yet I have never been able to solve it, and I would love some help. Not just for me but everyone else that can't figure out how to load Audio and Video posts when using Cody Sherman's infinite scroll. http://static.tumblr.com/q0etgkr/lPHlj76n8/infinitescrollingbycodysherman.js
I tend to only come across fixes for themes running Masonry and http://www.infinite-scroll.com not Cody Sherman's infinite scroll. Is there a way to fix the audio & video player not loading without changing to these two by perhaps altering some of the code below?
/* repair audio players*/
function repairAudioPlayer(){
$('.audioplayerinto.done').each(function(){
var audioID = $(this).attr("id");
var $audioPost = $(this);
$.ajax({
url: '{URL}/api/read/json?id=' + audioID,
dataType: 'jsonp',
timeout: 50000,
success: function(data){
$audioPost.html(data.posts[0]["audio-player"]);
$audioPost.removeClass("audio");
}
});
$audioPost.removeClass("done");
});
}
/* repair video players*/
function repairVideoPlayer(){
$('.videoPost.done').each(function(){
var videoID = $(this).attr("id");
var $videoPost = $(this);
if($videoPost.find("div#tumblr_video_container_"+videoID).length){
$.ajax({
url: '{URL}/api/read/json?id=' + videoID,
dataType: 'jsonp',
timeout: 50000,
success: function(data){
$videoPost.html(data.posts[0]["video-player-500"]);
}
});
}
$videoPost.removeClass("done");
});
}
loadfunction callback to do the functions above. – Ally Feb 17 at 23:07