function delay(gap) { /* gap is in millisecs */ 
	var then,now; 
	then = new Date().getTime(); 
	now = then; 
	while((now - then) < gap) {
		now = new Date().getTime(); // 현재시간을 읽어 함수를 불러들인 시간과의 차를 이용하여 처리 
	}
}

'javascript, jquery' 카테고리의 다른 글

웹페이지 우클릭, 블럭선택, 드래그 방지  (0) 2015.03.26
Github - slider kit  (0) 2015.03.24
부모창[opener] 새로고침  (0) 2015.02.04
문자열 마지막 문자 제거  (0) 2015.01.11
print_r 함수  (0) 2015.01.11
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,