js2.html 271 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <script type="text/javascript"> function bodyHeight(){ var ifheight = $(document.body).height()+30; if(ifheight < 500){ ifheight = 500; } $('#ifright',window.parent.document).css('height',ifheight); } $(function(){ bodyHeight(); }); </script>