Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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");
                });
            }
share|improve this question
You can't use that script if you want to fix audio and video. You'll need to use the Auto Pager jQuery plugin (which that code uses) and set a load function callback to do the functions above. – Ally Feb 17 at 23:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.