Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to change the value in one textfield from the value of another textfield without any submits. Example:

[Textfield 1 (type 'hello')]

[Textfield 2 ('hello' is inserted here as well)]

Below is my form:

<form action="#" id="form_field">
   <input type="text" id="textfield1" value="">
   <input type="text" id="textfield2" value="">
</form>

I don't know much about JavaScript, is this even possible? Would appreciate any help.

Thanks

share|improve this question
Why has this been given a negative rating? Please comment here on whats wrong with my question, and I'll do my best to improve it. There's no point in giving negative rating and not bothering to leave feedback... It helps no one. – Oliver Jones Apr 16 '12 at 16:07

4 Answers

up vote 2 down vote accepted
<form action="#" id="form_field">
   <input type="text" id="textfield1" value="" onKeyUp="document.getElementById('textfield2').value=this.value">
   <input type="text" id="textfield2" value="">
</form>

see it in action: http://jsfiddle.net/4PAKE/

share|improve this answer
This works well, but it only changes the value after I click off the field. Is it possible to change the value in textfield 2 in real time? Thanks – Oliver Jones Apr 16 '12 at 16:10
connect it to onKeyUp instead – micha Apr 16 '12 at 16:11

You can do:

HTML:

<form action="#">
    <input type="text" id="field" value="" onChange="changeField()">
</form>

JS:

function changeField() {
    document.getElementById("field").value="whatever you want here";
}

Sometimes this won't work. So you need to use micha's solution:

<form action="#" id="form_field">
   <input type="text" id="textfield1" value="" onChange="document.getElementById('textfield2').value=this.value">
   <input type="text" id="textfield2" value="">
</form>

See this solution in this jsFiddle

You can read more about .value here.

Hope this helps!

share|improve this answer

If you want to do it with jquery, then please add the following script

<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>

and then write the following code:

$("#textfield1").bind("input", function() {
    $("#textfield2").val($("#textfield1").text());
}
share|improve this answer
Might want to note to the OP that you're solution requires jQuery. – j08691 Apr 16 '12 at 16:01
yes, now i am mentioning it to include jquery – sarwar026 Apr 16 '12 at 16:07

You can use jQuery to accomplish this as @sarwar026 mentioned but there are some problems with his answer. You can do it with jQuery with this code:

$('#textfield1').blur(function() { 
    $("#textfield2").val($("#textfield1").val());
}​);​

In order to use jQuery you'll need to include it on your page, before your script.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.