<iframe> Experiment

HTML

<iframe 
 src="https://beta.mineset.com/develop/dataset?id=123232"
 id="myiframe" 
 frameborder="0">
</iframe>

JavaScript

$('iframe').load(function() {
       this.style.height =
       this.contentWindow.document.body.offsetHeight + 'px';
   }
)