Advertisement
Transformator

javascript002

May 5th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function getmd5() {
  2.     xmlhttp = new XMLHttpRequest();
  3.     xmlhttp.onreadystatechange=function() {
  4.         if (xmlhttp.readyState==4 && xmlhttp.status==200) {
  5.             document.getElementById("output").innerHTML=xmlhttp.responseText;
  6.         }
  7.     }
  8.  
  9.     xmlhttp.open("GET", "www.scharnofske.de/zumAusführen/md5.php?md5=" + document.getElementById("md5"), true);
  10.     xmlhttp.send();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement