Skip to content

Instantly share code, notes, and snippets.

View hi-skittles's full-sized avatar

skittles hi-skittles

  • London
  • 22:02 (UTC +01:00)
View GitHub Profile
@KartikTalwar
KartikTalwar / JavaScriptRepeat.js
Created April 5, 2012 00:12
Make a JavaScript function repeat every x seconds
function refreshData()
{
x = 5; // 5 Seconds
// Do your thing here
setTimeout(refreshData, x*1000);
}