When dragging a jquery dialog with an iframe inside , the drag stops if the mouse goes over the frame contents while dragging. It seems that the iframe takes automatically the focus. is there any way to prevent this and make drag normal?
var iframe=document.createElement('IFRAME');
$(div).append(iframe)
.dialog();
from naugtur suggestion i found this good working solution:
have you tried setting a z-index for the iframe?
It's just my guess, but I'd try covering everything with a transparent div 100% width&height while dragging and assuring it's above iframes and under the dragged thingie :)