Skip to content

Instantly share code, notes, and snippets.

@mrship
Created July 16, 2009 15:19
Show Gist options
  • Save mrship/148468 to your computer and use it in GitHub Desktop.
Save mrship/148468 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang='en_gb' xml:lang='en_gb' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>
Timeout test
</title>
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
<script type='text/javascript'>
//<![CDATA[
function move_on() {
window.location = 'http://www.google.com';
}
//]]>
</script>
</head>
<body onload='setTimeout(move_on, 3000)'>
Wait 3 seconds then you'll see Google.
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment