Forum Discussion
JoseAGomes
1 year agoCommunity Member
Player controls
Hello... I have an interactive video and I want the controls from the player to show. Play/pause, captions, volume and seek bar. What I don't want is restart/replay button because it will mess up ...
LNoelJefferson
1 year agoCommunity Member
Hello,
I have used the following Javascript to remove the replay and play/pause. I found this a while ago in some of the community feedback.
document.getElementById('play-pause') .style.display = "none";
document.getElementById("reset").style.display = "none";
- LNoelJefferson1 year agoCommunity Member
remove the space after ". . . -pause').style.display. . .""
- CaralynKaraitis3 months agoCommunity Member
If you want to turn these back on later, if "none" is off what do you change style.display to inorder to turn it back on? Just curious. Thanks.