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.
|
-
-
- $(window).load(function(){
- resizes()
- setTimeout(function(){
- resizes()
- },0)
-
- }).resize(function(){
- resizes()
- })
-
- function resizes(){
- var inSec1H = $('.index_sec1').outerHeight();
- var h = inSec1H - $('.inSec2Col9').height() - 22 - $('.index_sec2 .inSec1T').outerHeight();
- $('.inSec2Row').eq(1).find('.inSec2List').height(h)
- }
|