diff options
Diffstat (limited to 'test/ajax/ajax.php')
-rw-r--r-- | test/ajax/ajax.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/ajax/ajax.php b/test/ajax/ajax.php new file mode 100644 index 0000000..f5c8162 --- /dev/null +++ b/test/ajax/ajax.php @@ -0,0 +1,14 @@ +<?php + echo '<?xml version="1.0" encoding="ISO-8859-1"?>'; +?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <title>Test AJAX</title> + <script type="text/javascript" src="ajax_simple.js"></script> + </head> + <body> + <p><a href="#" onclick="url2div('coucou.txt','pong')" >Ping</a></p> + <div id="pong">Cliquez sur ping !</div> + </body> +</html>
\ No newline at end of file |