Advertisement
Guest User

Untitled

a guest
May 26th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <script>
  2. jQuery().ready(function(){
  3. setInterval("getResult()",1000);
  4. });
  5. function getResult(){
  6. jQuery.post("main-active-attacks.php",function( data ) {
  7.  
  8. document.getElementById("active-attacks").innerHTML = data;
  9. });
  10. }
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement