Guest User

Untitled

a guest
Jan 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.  
  3. <head>
  4.  
  5. <script type="text/javascript">
  6.  
  7. function ajax(url,id){
  8.     if (window.XMLHttpRequest)
  9.     xmlhttp=new XMLHttpRequest();
  10.     }
  11.     else
  12.     xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  13.     }
  14.     xmlhttp.onreadystatechange=function()
  15.     {
  16.     if (xmlhttp.readyState==4 && xmlhttp.status==200)
  17.         {
  18.             document.getElementById(id).innerHTML=xmlhttp.responseText;
  19.     }
  20.     }
  21.     xmlhttp.open("GET",url,true);
  22.     xmlhttp.send();
  23.     }
  24.  
  25. </script>
  26.  
  27. </head>
  28.  
  29. <body>
  30.  
  31. <a href="" onClick="ajax("access.php?do=ajax_newuser",newuser);">Make an Account Now</a>
  32.  
  33. <div id="newuser">
  34. </div>
  35.  
  36. </body>
  37.  
  38. </html>
Add Comment
Please, Sign In to add comment