
Stop jwplayer from adding 'background-color'
I have simple script to setup player:
jwplayer('mediaplayer').setup({
file: '...',
image: '...',
width: 356,
height: 320
});
Player work fine, movie is played.
But, there is a problem - 'background-color' is added to styles. I get this styles defined when page is loaded:
style="opacity: 1; width: 356px; height: 320px; background-color: rgb(0, 0, 0);"
How I can make player to do not add 'background-color'?
I just need to make it transparent.
Thank you!