jQueryまたはjsがブラウザウィンドウのサイズを変更したときにページを自動的にリフレッシュ



$(window).resize( function (){      alert( " !" );      location.reload()      // ! });


//

$(window).resize( function   () {           //      alert($(window).height());           //      alert($(document).height());         //      alert($(document.body).height());    // body      alert($(document.body).outerHeight( true ));  // body border padding margin });