I’m trying to fill an input form with different select box, for example:
(The example below does not work at all )
http://jsfiddle.net/K35er/1/
(The example above does not work at all )
but the goal is to get all the values in the input but in this format :
1/2 R3
where 1 is #select , 2 is #select2 & R3 is #select3
is this possible??
thanks
You need to use
.val()to get the value of the selected option. In youonchangehandler you need something like below,DEMO: http://jsfiddle.net/K35er/3/