모바일에서 회전을 하면 그 페이지 새로고침 하는 스크립트이다.

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