diff options
author | AndrewMurrell <amurrel@purdue.edu> | 2014-03-25 17:38:38 -0400 |
---|---|---|
committer | AndrewMurrell <amurrel@purdue.edu> | 2014-03-25 17:38:38 -0400 |
commit | 53b4f8028fc987b0cf26a7a073fec7064b4b6d8a (patch) | |
tree | d277b31519df83e8a1c060b04c6ea6cf50b5c361 /app/assets/javascripts/ajax.js | |
parent | 0c22c4bd9a0b4a0b0ff5840c1af41c0b320e3529 (diff) |
revert Guntas
Diffstat (limited to 'app/assets/javascripts/ajax.js')
-rw-r--r-- | app/assets/javascripts/ajax.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/assets/javascripts/ajax.js b/app/assets/javascripts/ajax.js new file mode 100644 index 0000000..040c100 --- /dev/null +++ b/app/assets/javascripts/ajax.js @@ -0,0 +1,19 @@ +function populate() { + //populate optionArray + //make a form element + var e = document.getElementById("tournament_id"); + var gameType = e.options[e.selectedIndex].text; + if (gameType != "Select a Game Type") { + alert(gameType + " was Selected!"); + //populate optionArray via AJAX + //select * from tournament_settings where gametype = GameType + for(var option in optionArray){ + //identify the number of + ; + } + }; + +//$.ajax(url: "/selected").done (html) -> $("#ajax-form").append html + +} + |