I have 2 embedded video from youtube which work fine and then I have 3 embedded videos from vrideo.com that doesn't work in my wordpress website. Everything(youtube and vrideo) works great on Chrome, Safari, Opera and yes even IE :)
Unfortunately it does not work on Firefox, it seems like the video is not being loaded. The screen just stays empty. The weird thing is when I change the source code of the iframe in my browser with the embedded link that I copy from vrideo.com it does work. When I compare the iframe code that I copy with the one that's already in it, it's exactly the same.
The source code (doesn't work):
<iframe src="http://www.vrideo.com/embed/RKSFWQm" scrolling="no" allowfullscreen="1" frameborder="0" height="350" width="560"></iframe>
The embedded link that I copy from vrideo.com (works):
<iframe src="http://www.vrideo.com/embed/RKSFWQm" scrolling="no" allowfullscreen="1" frameborder="0" height="350" width="560"></iframe>
So weird, they're exactly the same but it doesn't work.
I get this nasty errors in my console 3 times(3videos):
NS_ERROR_FAILURE:
TypeError: VRIDEO.Player is not a constructor
It's about this line of code in JS
var player = new VRIDEO.Player("mainVideo", playerProperties);
Anyone can help me out or has experienced anything similar? Thanks in advance!