Forum Discussion
RickAngelone2
10 years agoCommunity Member
Hide or Show Seekbar in slide
I've read several posts on this topic, but none have answered the question. Is there a way (using javascript) to hide the seekbar or show the seekbar using a javascript trigger?
i.e. make a button...
JanilSamson
6 years agoCommunity Member
Hi Claudio,
I recently encountered this as well. I'm no expert in JavaScript but a workaround that worked for me was defining the DIV ID of the player controls as a variable to hide and show it. Here is what I used in the execute Java trigger:
To hide:
var x = document.getElementById("playback-controls");
{x.style.display = "none";
}
To show:
var x = document.getElementById("playback-controls");
{x.style.display = "block";
}
Again, this worked for me but I'm no Java expert so hopefully someone else in the community can give you a better solution.
ClaudioFayngolz
6 years agoCommunity Member
Not working….:(
But thanks!
Claudio Fayngolz
claudiofayngolz@gmail.com
203.247.7406
skype: cfayngolz
www.claudiofayngolz.com
Related Content
- 2 months ago