Jquery Selectbox get the value when selected and set to textfield

52 Views Asked by At

Hi I am new to javascript, html and jquery. I would really appreciate any help or suggestion thanks in advance. I am trying to get the value of my jquery select box and set the value to the textfield everytime they select something in the selectbox it will automatically change the value of text box. I am using the code below but I am just wonderingw what seems to be wrong in the code

<!DOCTYPE html>
<html>
<script type="text/javascript">

$('#loc').change(function(){
  var val = $('#loc').val();
  $("#com").val(val);
});

</script>              
</html>
1

There are 1 best solutions below

0
On

You means the innerHTML of option not value? Try this:

<!DOCTYPE html>
<html>
<script type="text/javascript">

$('#loc').change(function(){
  var val = $( "#loc option:selected" ).text();
  $("#com").val(val);
});

</script>              
</html>