summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ajax.js
blob: 475dddca496b04c9a958e6c0f04ade5ebadd0663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
		//select * from tournament_settings where gametype = GameType
		for(var option in optionArray){
			//identify the number of 
			;
		}
	};
}