//Video Transcript page - expand function

 

function transcriptexpand() {

      $('.videodetails .transcript').hide('fast');

      $('.videodetails .transcript').before('<a href="#" class="plusicon">See full transcript</a>');

      $('.videodetails .plusicon').toggle(function(){

            $(this).parent().find('.transcript').show('slow');

            $(this).text('Video Transcript')

            $(this).removeClass('plusicon').addClass('downicon');

            return false;

      }, function(){

                        $(this).parent().find('.transcript').hide('slow');

            $(this).text('See full transcript')

            $(this).removeClass('downicon').addClass('plusicon');

            

      });

 

};

 

$(document).ready(function() {

      

      transcriptexpand();

      

});
