Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Video Controls don't hide at the start


When using a JW6 player that auto-plays the videos, the controls on the player are visible until you hover over them, then they start auto-hiding.

Example can be found here: http://dev.responsivedata.com/cody/responsiveoffers/automaticceo-challenge/video.php

Is there a way for the controls to be hidden once the player starts and then only show up when the user hovers over the video?

1 Community Answers

Ethan Feldman

JW Player Support Agent  
1 rated :

Here is a way to do this:

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>

</head> <body> <div id="botr_h3c1KxFU_yePLoaQk_div" onmouseover="jwplayer().setControls(true);" onmouseout="jwplayer().setControls(false);"></div>

<script type="text/javascript" src="http://video.responsivedata.com/players/h3c1KxFU-yePLoaQk.js"></script>
<script type='text/javascript'> jwplayer().onReady(function() { jwplayer().setControls(false); }); </script>

</body> </html>

This question has received the maximum number of answers.