모바일 웹에서 회전을 했을경우 새로고침 하는 소스이다.

//회전시 새로고침 
window.orientationchange = orientationEventHandler;
window.addEventListener('orientationchange', orientationEventHandler, false);
function orientationEventHandler(){
    var orientation = window.orientation;
    // 회전했을 경우 처리
    if(orientation == 90 || orientation == -90){
        location.reload();
    } else {
    // 회전하지 않았을 경우 처리
        location.reload();
    } 
}