tengo este código y funciona bien:redimensionamiento iFrame con jQuery UI
Cabeza
<script>
$(document).ready(function()
{
$("#test").resizable({minHeight: 50, minWidth: 50});
});
</script>
cuerpo
<div id="test" style="border: .1em solid black;">
</div>
Sin embargo, cuando cambio mi "div" en "iframe" Yo no puede redimensionarlo más.
cuerpo
<iframe id="test" style="border: .1em solid black;">
</iframe>
Aquí una respuesta: http://stackoverflow.com/a/13473569/676479 – Oleg