.box のクラスを持つ一連の要素があります。それぞれの要素をウィンドウと同じ高さにしたいと思います。
これを静的htmlドキュメントで使用してこれを機能させました
!function($, undefined) {
var $win = $(window),
$body = $('html,body'),
$box = $('.box'),
$head = $('#head');
function refresh() {
var h = $win.height() - $head.height();
if(Modernizr.touch) return;
$box.css('min-height', h);
$box.each(function() {
var $this = $(this);
$this.find('section').css('height', $this.outerHeight())
})
}
$win.resize(function(e) {
refresh()
}).resize();
}(jQuery)
しかし、私はこれをワードプレスで機能させようとしていますが、機能していません.