Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
  <script type="text/javascript">%code%</script>
</head>
<body>
  <div id="output"></div>
</body>
</html>
 
/*
 * This script will request HTML from example.com every 4 seconds and put it
  * in the div with the id "output".
 */
var timeout;
$(document).ready(
  function() { // callback function for $.ready()
    timeout = setTimeout(
      function() { // function to run every 4 seconds
        $.get('http://example.com/',
              function(data) { // function to run on successful AJAX request
                $('#output').fadeOut('slow',
                                     function() {
                                       // function to call after #output is hidden
                                       $(this).html(data).fadeIn('slow');
                                     }
                                    );
              }
             );
      }
      , 4000);
  }
);
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers