Hey thanks for your quick reply. There is no player as such, it's in the background (invisible if you will.)
I've stripped out the jQuery back to Vanilla and got this but it's still not liking it, any suggestions?
if (document.getElementById('js-video').pause()) {
document.getElementById('js-video').pause();
alert('1');
}
// Check if support
if (document.getElementById('js-audio').pause()) {
document.getElementById('js-audio').pause();
alert('2');
}
Chrome pauses fine, except alerts don't appear. IE8 still won't load rest of JS.
Thanks.