Advertisement
pebriana

jquery timeout reload

Nov 16th, 2011
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. <html>
  2. <head><title>as</title></head>
  3. <body>
  4. <div id="selesai">tes</div>
  5. </body>
  6. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
  7. <script type='text/javascript'>
  8.  
  9. function update() {
  10.   $.get("aha.php", function(data) {
  11.     $("#selesai").html(data);
  12.     window.setTimeout(update, 10000);
  13.   });
  14. }
  15.  
  16. $(document).ready(function() {
  17.     update();
  18. });
  19. </script>
  20.  
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement