Skip to content

Instantly share code, notes, and snippets.

@Dannyzen
Created August 26, 2012 18:40
Show Gist options
  • Save Dannyzen/3482457 to your computer and use it in GitHub Desktop.
Save Dannyzen/3482457 to your computer and use it in GitHub Desktop.
<html>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js"></script>
<body>
<script type="text/javascript">
var i = 0
var auto_refresh = window.setInterval(
function ()
{
$('#load_tweets').load(i);
}, 100);
</script>
<div id="load_tweets"> </div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment