
Numbers in html container id
I've found that the player doesn't work properly if id starts with any digit. e.g. this one works file <div id='videoContainerId'></div>, but this doesn't <div id='123videoContainerId'></div>. Actually the player initializes a video, but there is no control elements on it. Anyone experienced the same issue?
jwplayer('videoContainerId').setup({
file: "http://www.youtube.com/watch?v=pQqpL6n4gvU",
width: '300px'
});
jwplayer('123someId').setup({
file: "http://www.youtube.com/watch?v=pQqpL6n4gvU",
width: '300px'
});
http://jsfiddle.net/YgjYW/190/