$(document).ready(function() {
  $('#areablog iframe').load(function(){
    var height = this.contentWindow.document.documentElement.scrollHeight;
    if( $(this).height() != height) {
      $(this).height(height+30);
    }
  });
});

