See example here: http://jsfiddle.net/KK36F/2/
How to solve this?
See example here: http://jsfiddle.net/KK36F/2/
How to solve this?
My old answer of:
I've used jQuery noConflict to work around flowPlayer. As I can't reproduce your problem (flowPlayer is blocked on my site rrrrr) it's the best I can do.
Didn't work... I've managed to reproduce the problem and track it down to a line in the flowplayer code:
// skip IE policies
document.ondragstart = function () { return false; };
If you make this safer (as it is a JScript only IE thing), the draggable works again.
if(document.ondragstart) {
document.ondragstart = function () { return false; };
}