Jump to content

How to load value to text field when choose value in select


mrbhb

Recommended Posts

I have problem need help that, I have a form have 1 select filed and 1 text field, I want when I choose value in option of select the text field will load/appear value in proportion to value of select, example in picture when I choose "B" in select field, the value in text filed will appear "1", so how to do it, I need example to refer, guide or demo example, Thank for read my topic

 

Here is Image

gdf_zpsac464e04.jpg

Code

<head>
<title>Untitled Document</title>
<style type="text/css">
</style>
</head>
<body>
    <center>
    <br />
    <form id="cv" action="" method="">
        Choose Option: <select id="chedo">
        <option>--Choose Value--</option>
        <option>A</option>
        <option>B</option>
        <option>C</option>
        </select>
        <br />
        <br />
        Value: <input type="text" id="lenh" size="40"/>
        <br />
        <br />
        <input type="submit" value="SUBMIT"/>
    </form>
    </center>
</body>
</html>

thank for read and help of everyone, you need to add jQurey library and here is code

<script type="text/javascript" language="javascript">
$("#chedo").change(function(){
var selected = $("#chedo").val();
$("#lenh").val(selected);
});
</script>

Additionally, add .change() to your selector to trigger the change event on the initial page load.

 

$("#chedo").change(function(){
var selected = $("#chedo").val();
$("#lenh").val(selected);
}).change();

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.