[javascript] 60초마다 페이지 새로고침

60초마다 페이지를 새로고침해주는 스크립트다.

<script language='javascript'> 
window.setTimeout('window.location.reload()',60000); //60초마다 새로고침
</script>

메타 태그 이용 시

<meta http-equiv="refresh" content="60">

Be the first to comment

Leave a Reply

Your email address will not be published.


*