View Single Post
Old 01-13-2013, 12:51 PM   PM User | #2
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,399
Thanks: 18
Thanked 352 Times in 351 Posts
sunfighter is on a distinguished road
FYI This is jquery a javascript framework. Here is how to get the value of a select dropdown.
Code:
	$("select").change(function(){
		alert(this.value);
	});
Instead of the alert you might want to set a string to that value and process it. Each dropdown will trigger this.

I do notice that the dropdowns have a default value of one, think that should be zero.

Last edited by sunfighter; 01-13-2013 at 12:53 PM..
sunfighter is offline   Reply With Quote