Skip to content

Instantly share code, notes, and snippets.

@lyuehh
Created August 26, 2013 06:34
Show Gist options
  • Save lyuehh/6338587 to your computer and use it in GitHub Desktop.
Save lyuehh/6338587 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<script>
$(function() {
var $t = $('#time');
setInterval(function() {
$t.html(+new Date());
}, 1000);
});
</script>
</head>
<body>
<div id="time"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment