how to get runtime value of one text box and show it to other text box using javascript

UI_Dev

I am having two text boxes namely Amount 1 and Amount 2 as like below..

JSFiddle

<input name="name1" id="id1" value="" type="radio" >&nbsp;&nbsp;Amount 1&nbsp;$ <input name="amtname" size="5" maxlength="7" value="" ><br><br>
<input name="name1" id="id2" value="" type="radio" >&nbsp;&nbsp;Amount 2&nbsp;$ <input name="amtname" size="5" maxlength="7" value="" ><br> 

If I type any value in Amount 1 text box, it should display the same value in Amount 2 text box by getting runtime value from Amount 1 Text box. And If I click on Amount 1 Checkbox, it should display the value of Amount 1 Text box in Amount 2 Text Box. Is it possible using javascript?

Praveen

Add a onkeyup event listener to your first element(Whenever a key is pressed, the value in first textbox is also entered in second.). Then call the function like

function enterAmt(ev) {
    document.getElementById('amt2').value = ev.value;
}

JSFiddle

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get more than one value of text box using in condition

From Dev

Unable to show a text box after checking value of other using jquery

From Dev

how to show or hide drop down based on text box using javascript

From Dev

using single text box to enter value in other box

From Dev

how to pass text box value in show function?

From Dev

How to show check box text if it is not next to check box using jQuery

From Dev

how to set text box value to upload filename using javascript?

From Dev

how to set text box value to upload filename using javascript?

From Dev

How to get value of a text box in a dialog box using jquery in php, i get it as blank or undefined

From Dev

Show text box using variable

From Dev

How to get value and remove text box jQuery

From Dev

How to get value of text box embeded in cell

From Dev

How to set values of text box using values of other text boxes

From Dev

How to hide/show a text-box base on other text-box in Laravel 4?

From Dev

How to Display a filtered value in a text box of userform in vba at runtime

From Java

Get the value in an input text box

From Dev

Returning a value to a text box with JavaScript

From Dev

How do i get the text value of the text box as its title attribute using Jquery?

From Dev

In the html text box, how to show value which itself contains "" symbol?

From Dev

How to show a text box if value in tablix is empty in RDLC report

From Dev

how to set value in text box on button click on other page in uwp?

From Dev

how to set value in text box on button click on other page in uwp?

From Dev

How to deselect a text box in javascript

From Dev

How to deselect a text box in javascript

From Dev

How to show date calendar on text box using angular js?

From Dev

how to concatenate two or more text box values in one text box

From Dev

how to concatenate two or more text box values in one text box

From Dev

How to disable a text-box when clicking on other radio-buttons using a single function in javaScript?

From Dev

show suggestions on text box

Related Related

  1. 1

    How to get more than one value of text box using in condition

  2. 2

    Unable to show a text box after checking value of other using jquery

  3. 3

    how to show or hide drop down based on text box using javascript

  4. 4

    using single text box to enter value in other box

  5. 5

    how to pass text box value in show function?

  6. 6

    How to show check box text if it is not next to check box using jQuery

  7. 7

    how to set text box value to upload filename using javascript?

  8. 8

    how to set text box value to upload filename using javascript?

  9. 9

    How to get value of a text box in a dialog box using jquery in php, i get it as blank or undefined

  10. 10

    Show text box using variable

  11. 11

    How to get value and remove text box jQuery

  12. 12

    How to get value of text box embeded in cell

  13. 13

    How to set values of text box using values of other text boxes

  14. 14

    How to hide/show a text-box base on other text-box in Laravel 4?

  15. 15

    How to Display a filtered value in a text box of userform in vba at runtime

  16. 16

    Get the value in an input text box

  17. 17

    Returning a value to a text box with JavaScript

  18. 18

    How do i get the text value of the text box as its title attribute using Jquery?

  19. 19

    In the html text box, how to show value which itself contains "" symbol?

  20. 20

    How to show a text box if value in tablix is empty in RDLC report

  21. 21

    how to set value in text box on button click on other page in uwp?

  22. 22

    how to set value in text box on button click on other page in uwp?

  23. 23

    How to deselect a text box in javascript

  24. 24

    How to deselect a text box in javascript

  25. 25

    How to show date calendar on text box using angular js?

  26. 26

    how to concatenate two or more text box values in one text box

  27. 27

    how to concatenate two or more text box values in one text box

  28. 28

    How to disable a text-box when clicking on other radio-buttons using a single function in javaScript?

  29. 29

    show suggestions on text box

HotTag

Archive