Flowplayer Dragging
I was working with Flowplayer today, and for some weird reason you “drag” the player along with your mouse when ever you’re changing the volume or moving the time slider (progress bar), you’re probably using Firefox and HTML5.
The trick is to make the container tag (I’m using <a id=“player”>, so my tag is a) un-draggable. Yea, appearantly some tags are naturally draggableby default in HTML5, and I guess Anchor tags are one of them.
Anyway, just add draggable=“false” and will fix your problem.
Sample:
<a id="player" href="../my-video.flv" draggable="false"></a>

