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

player and cover image not displaying on chrome browser


The player and cover image display properly on IE-11, Firefox, Opera, Safari, and Torch, and the video plays fine. But the player and cover image do not display on Chrome-33. If I double-click within the boundaries of the video element the screen will go to full-screen mode and the video will play. But if I esc out of full-screen the video no longer plays on the screen but continues to run on the server (if I return to full-screen the video has progressed.)

URL=www.hifrequency.net/cashback/confirmation.htm

Embed bc.. <div id="myElement">Loading the video ...</div>
<script type="text/javascript">
jwplayer("myElement").setup({
file: "business_info.flv",
height: 415,
image: "images/video-cover750.jpg",
width: 750
});
</script>



3 Community Answers

JW Player

User  
0 rated :

I removed a border-radius property from the linked css file and it works now.

JW Player

User  
0 rated :

I removed a border-radius property from the containing myElement div in the linked css file and now the video works in chrome. Original code and revised code shown below:

Original
bc.. #myElement {
width: 750;
margin-left: 20px;
text-align: center;
border-radius: 15px;
}



Revised Version that works in chrome:
bc.. #myElement {
width: 750;
margin-left: 20px;
text-align: center;


}

Incidentally, the border-radius worked OK in all other browsers other than chrome.

Ethan Feldman

JW Player Support Agent  
0 rated :

Ah, ok, glad you got it.

This question has received the maximum number of answers.