i got every thing else to work. just having a problem with the .txt file. it just displays the doc path. does not display the actual document.
function callMeta() {
var songName = $(nowPlaying).attr('data-songTitle');
$('#songTitle').html(songName);
var artistName = $(nowPlaying).attr('data-songArtist');
$('#songArtist').html(artistName);
var aBio = $(nowPlaying).attr('data-artistBio');
$('.artistBio').html(aBio);
var aCover = $(nowPlaying).attr('data-albumCover');
$('img.albumCover').attr('src', aCover);
}
error, your browser doesn't support the HTML audio tag!