Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <p id="hide-me" style="display: none;">Hidden for 5 seconds</p>
</body>
</html>
 
window.setTimeout(function() {
    alert("after 5 seconds, you see me!");
    document.getElementById("hide-me").style.display = "inline";
}, 5000);
// hidden for 5 seconds.
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers