프로그래밍/자바스크립트

[jquery] 아이폰 가로(landscape),세로(portrait) 모드 변경 이벤트

젠트 2011. 4. 4. 01:07

jquery 폰의 가로,세로 변경시 이벤트 처리방법


$('body').bind('orientationchange',function(event){
	if (event.orientation == "portrait") {
		//세로
	} else if (event.orientation == "landscape") { 
		//가로
	}
})