You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 335 B

1234567891011121314151617
  1. $(window).load(function(){
  2. resizes()
  3. setTimeout(function(){
  4. resizes()
  5. },0)
  6. }).resize(function(){
  7. resizes()
  8. })
  9. function resizes(){
  10. var inSec1H = $('.index_sec1').outerHeight();
  11. var h = inSec1H - $('.inSec2Col9').height() - 22 - $('.index_sec2 .inSec1T').outerHeight();
  12. $('.inSec2Row').eq(1).find('.inSec2List').height(h)
  13. }