I have made a transcript for video using frogaloop and trying to auto-scroll the text in the div when the class .highlight is added.
function checkTime() {
froogInstance.addEvent('playProgress', function(data) {
var curTime = Math.floor(Number(data.seconds));
if(events[curTime]) {
$('.highlight').removeClass('highlight');
events[curTime].addClass('highlight');
$('span:time-span(.highlight):first');
}
});
}
jumpToClickedSentance(args);
initTimes(args);
return this;
}
I have tried by adding $('span:time-span(.highlight):first');
. However this doesn't work. The text is not scrolling.