Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 18th, 2012  |  syntax: JavaScript  |  size: 0.23 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function doAjax(x) {
  2.         $.ajax({
  3.                 method: "GET",
  4.                 url: "plugins.php?do=" + list[x],
  5.                 success: function(res) {
  6.                         $('#ajaxDiv').html(x + " - " + res + "<br />" + $('#ajaxDiv').html());
  7.                 }
  8.         });
  9. }
  10.  
  11. setTimeout(doAjax(x), 20000);