summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ajax.js
blob: 2b2bb3e5fa97c9fd183f0c95a66d90a32aab43bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function populate() {
	//populate optionArray
	//make a form element
	var e = document.getElementById("tournament_id");
	var gameType = e.options[e.selectedIndex].text;
	if (gameType != "") {
		//populate optionArray
		
		for(var option in optionArray){
			//identify the number of 
			;
		}
	};
}