Im trying to have a div output the result of this code from JMedia Elements's JME html5 video, the following code returns the formatted currentTime in mm:ss
- jmeLog( 'position: '+ $('video').getFormattedTime() );
Unfortunatly i dont know how to use it or position it, has anyone had any experience using jmeLog
I have tried the following code as a onClick(); test, thinking its the right way, but obviously not
- function time()
- {
- var timeteller = jmeLog( 'position: '+ $('video').getFormattedTime());
- document.getElementById("testtime").innerHTML = timeteller;
- }
What i really would like is the code constantly updated
Can anyone help?