blob: 040c1009b7be9a3f747d2df6fc03d0e0415845cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
}
|