Update Titlepage with links to individual sections
[matches/MCTX3420.git] / testing / web2io / test.js
1 $(document).ready(function()
2 {
3         // Send AJAX request
4         $.ajax({url : "/sensor", data : {}}).done(function(data) {$(this).update(data)});
5
6         // Interpret AJAX response
7         $.fn.update = function(data)
8         {
9                 console.log("Interpret AJAX response: "+data);
10                 $("#body").html("<a href=\"/index.html\">"+data+"</a>")
11         }
12         
13 });
14

UCC git Repository :: git.ucc.asn.au