-
I’ve create a page the contains five panels and a FV Player shortcode is inserted into each panel. Only one panel is visible at a time. Once document ready is loaded, I am able to get the visible video to play using
if(typeof(flowplayer) != "undefined") { console.log('flowplayer defined'); setTimeout(function () { flowplayer(0).load(); }, 1000); } });
I have not yet found a way to do something with ‘bind’ or ‘on’ ‘finish’. Also, if I call ‘flowplayer(0)’ a second time, the first reference to ‘flowplayer(0)’ becomes undefined.