Advertisement
ypraw

Untitled

Sep 29th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function auto_load(){
  2. $.ajax({
  3. url: "data.php",
  4. cache: false,
  5. success: function(data){
  6. $("#auto_load_div").html(data);
  7. }
  8. });
  9. }
  10.  
  11. $(document).ready(function(){
  12.  
  13. auto_load(); //manggil data ketika semua data udah dikirim
  14.  
  15. });
  16.  
  17. //fungsi buat load/refresh otomatis per 10 detik
  18. setInterval(auto_load,10000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement