Nicer (?) button.
[adorno.git] / www / js / adorno.js
blob9db8dc1a49723099f18b098d659100d30c950c91
2 var xmlhttp;
4 if (!xmlhttp && typeof XMLHttpRequest!=undefined) {
5   xmlhttp = new XMLHttpRequest();
6 } else {
7   xmlhttp = false;
10 function GetCurrentTrackInfo() {
11   xmlhttp.open("GET", "/get_current_track_info.php", true);
12   xmlhttp.onreadystatechange = function() {
13     if (xmlhttp.readyState==4) {
14       var rsp = xmlhttp.responseText;
15       var fields = rsp.split(" : ");
16       var artist = fields[0];
17       var album  = fields[1];
18       var track  = fields[2];
19       var t_now  = fields[3];
20       var t_end  = fields[4];
21       xmlhttp.send(null)
22       document.links[0].text = "»" + artist + "»" + album + "»"
23     }
24   }