Hello,
I am implementing an html video player which needs to be controlled by html button.
I proceed as follow:
in the html code:
Play
in the javascript code:
var play = document.getElementById(‘play’);
play.addEventListener(‘click’,playControl,false);
function playControl() {
do stuff…
}
The problem is that exeoutput or htmlexe does not recognise the javascript function “addEventListener”.
Thanks for your advise if you have an idea.
Francois