I\'m wondering if it is possible that when I click on an item in a multiple select box in HTML that it goes into another form box? Basically, when I click on something I want th
You can see this fiddle :
http://jsfiddle.net/ppSv4/
$('select option').on('click',function(){ $('#texthere').val( $(this).attr('value') ); });