This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JavaScript Document | |
$(document).ready(function(){ | |
var audioFile = $('.audio-file')[0]; | |
var currentPosition = audioFile.currentTime; | |
var audioFileSrc = $('.audio-file > source').attr('src'); | |
var audioInterval; | |
var sliderInterval; | |
var i = $('.speaker-bar').children().length;// tells us how many child elements there are to loop through | |
var n; |