Skip to content

Instantly share code, notes, and snippets.

@hanafiah
Created October 2, 2012 03:56
Show Gist options
  • Save hanafiah/3816077 to your computer and use it in GitHub Desktop.
Save hanafiah/3816077 to your computer and use it in GitHub Desktop.
javascript set interval
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<link rel="stylesheet" type="text/css" href="tcal.css" />
<script type="text/javascript" src="tcal.js"></script>
<script type="text/javascript">
setInterval(function(){
var calendar = document.getElementById("mula");
    document.getElementById("txtHint1").innerHTML= calendar.value;  
},3000);
</script>
<body>
<input id="mula" type="text" name="mula" class="tcal" size="50" style="text-transform:uppercase" />
<span id="txtHint1"></span></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment