Advertisement
Guest User

Untitled

a guest
May 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function load() {
  2. setTimeout(function () {
  3. $.ajax({
  4. url: "/whatever/thatphpfilewas.php",
  5. type: "GET",
  6. data: data,
  7. success: function (result) {
  8. $("#someDiv").html(result);
  9.  
  10. },
  11. complete: load
  12. });
  13. }, 5000);
  14. }
  15. load();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement