A ver si puedo hacer algo...
Como son dos iframes, supongo que falla porque solo recoges el tamaño del primero. Tal vez se solucione usando
.each():
Código Javascript
:
Ver originalvar lastHeight = 0, curHeight = 0, $frame = $('iframe');
$frame.each(function(){
curHeight = this.contents().find('body').height();
if ( curHeight != lastHeight ) {
this.height(lastHeight = curHeight);
}
});