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
Why so hard? There is much more beautiful solution:
code:
$("#Div").draggable({
start: function () {
$("iframe").css('z-index', '-1');
},
stop: function () {
$("iframe").css('z-index', '0');
}
});