1. <div class="right-nav"> 
  2.     <iframe id="my-frame" name="my-frame" src="" frameborder="0" scrolling="auto" ></iframe> 
  3. </div> 
  4.  
  5. <div class="clear"></div> 
  6.  
  7. <div class="footer">&copy;</div> 
  8.  
  9. <script> 
  10.     $(document).ready(function () { 
  11.  
  12.         $("#my-frame").load(function(){ 
  13.             var thisheight = $(this).contents().find("body").height() + 30; 
  14.             $(this).height(thisheight < 500 ? 500 : thisheight); 
  15.         }); 
  16.  
  17.     }); 
  18.  
  19. </script>