Skip to content

Instantly share code, notes, and snippets.

Created February 17, 2013 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/ccc2d129406d6f269dc5 to your computer and use it in GitHub Desktop.
Save anonymous/ccc2d129406d6f269dc5 to your computer and use it in GitHub Desktop.
var auto_refresh = setInterval(
function()
{
$mapDIV = $('#map');
$mapDIV.fadeOut('fast');
$mapDIV.remove('#map');
$mapDIV.insertAfter($("#map-container"));
$mapDIV.fadeIn('fast');
}, 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment