summaryrefslogtreecommitdiffstats
path: root/public/regform.js
blob: 197034eaac8d950d84b39e9af7e089029c8ba623 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function fetch(url, id) {
  var req = new XMLHttpRequest();
  req.onload = function() {
    var element = document.getElementById(id);
    var node = document.createElement("div");
    node.innerHTML = this.response;
    element.appendChild(node);
  };
  req.open("GET", url);
  req.send();
}

window.onload = function() {
  var num_songs = 0;
  var add_song_button = document.getElementById('add-song-button');

  add_song_button.onclick = function() {
    num_songs += 1;
    fetch(window.location + '/song/new/' + num_songs, 'form-songs');
  };
};