
Hide play button in conrtols
I have to hide play button but need to show other button like volume and fullscreen. Is it possible with jwplayer.
I do not want to provide pause feature to the user. I find a solution which something like give below but it is not good ux experience . If we want to restrict user to pause the video so why we should display pause button.
jwplayer(). onDisplayClick(function(){
jwplayer().play()
})
jwplayer(). onPause(function(){
jwplayer().play()
})