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>
You means the innerHTML of option not value? Try this: