JavaScript updates: new libraries, load all libraries.
[csrf-magic.git] / js-test / mootools.php
blob4348ada9d6f2a6270a4f4d77666672c058b6b591
1 <?php require_once 'common.php'; ?>
2 <!DOCTYPE html
3 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6 <head>
7 <title>MooTools test page for csrf-magic</title>
8 <?php $loc = print_javascript('mootools',
9 '//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js'
10 ) ?>
11 </head>
12 <body>
13 <h1>MooTools test page for csrf-magic</h1>
14 <p>Using <?php echo $loc ?></p>
15 <textarea id="js-output" cols="80" rows="4"></textarea>
16 <script type="text/javascript">
17 //<![CDATA[
18 var textarea = document.getElementById('js-output');
19 textarea.value = "MooTools " + MooTools.version + ":\n"
20 var callback = function (text) {
21 textarea.value += text;
23 var request = new Request(
25 url: 'mootools.php'
26 });
27 request.addEvent('onSuccess', callback);
28 request.send('ajax=yes&foo=bar');
29 //]]>
30 </script>
31 </body>
32 </html>