Version 0.10

This commit is contained in:
nemunaire 2008-11-19 12:00:00 +01:00
commit b9c240c781
246 changed files with 10218 additions and 1598 deletions

23
pages/nn/i.php Normal file
View file

@ -0,0 +1,23 @@
<html>
<head>
<script src="../js/prototype.js"></script>
</head>
<body>
Hello !
<a onclick="test(); return false;">Test</a>
<script>function test() {
new Ajax.Request(
'server.php',
{
onSuccess: function(transport, json) {
document.write(
"=> transport.responseText : " + transport.responseText
+ "<br />=> transport.responseXML : " + transport.responseXML
+ "<br />=> json : " + json.root.otherData.sub1
);
}
}
);
}</script>
</body>
</html>