I recently ran into some troubles using JQuery Draggable and Resizable plugins. Looking for solutions, i found some very fragmented code in many different places and finally fil
All great answers, but none were easily implemented for me!
I was helped, but in the end, I used:
Inside the Iframe Header tag:
var iframes = window.parent.$('iframe');
iframes.each(function () {
if ($(this).attr('src') == '')
$(this).css('z-index', '-1');
});
This is to fix a TinyMCE IFrame Draggable issue. on applying this code inside the iframe, the Non-Draggable problem. Also, check the order of the *.js files, it makes a difference!