Guest User

Untitled

a guest
May 20th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // JavaScript Document
  2. var xmlhttp=false;
  3.  
  4.  
  5. function claimbonus(user, type, id){
  6.         xmlhttp = new XMLHttpRequest();
  7.         xmlhttp.abort();
  8.     xmlhttp.open("GET", "/functions/ajax.php?func=claim_bonus&user="+user+"&type="+type, true);
  9.     xmlhttp.onreadystatechange=function() {
  10.         if(xmlhttp.status == 200) {
  11.          document.getElementById(id).innerHTML = xmlhttp.responseText;
  12.         }
  13.     }
  14.         xmlhttp.send(null);  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment