Files
unisa_tsw_2014_2015/ajax.html
2014-12-07 19:33:49 +01:00

34 lines
434 B
HTML

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<p> Ciao, Simone è gay?</p>
<p id="answer"></p>
<script>
req= new XMLHttpRequest();
req.addEventListener("load",handler,false);
req.open("GET","ajax.php",true);
req.send();
function handler(e){
document.getElementById("answer").innerHTML = req.responseText;
}
</script>
</body>
</html>