Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a drop down box, each option in it has 2 values. I want to dynamically update value in my HTML based on the selection. The value that has to be shown is derived from drop down box values. Here is my code, but nothing seems to be happening here.

<html>

    <head><title></title>

    <script type="text/javascript">

var a = new Array();
a[1] = "kgs"; 
a[2] = "gms"; 
a[3] = "ltrs"; 
a[4] = "ml"; 
a[5] = "nos"; 

window.onload = function() {

function updateunit(){

var b = document.getElementById("itemname");

var b1 = b.options[b.selectedIndex].value;

var c = b1.split(',');

var d = c[1];

var e = a[d];

alert(document.write(a[1]));

document.getElementById('pane2').innerHTML = b1 ;

}



updateunit()

document.getElementById('itemname').onchange = updateunit ;

}    

</script></head>


<body>

<form action='production.php' method="POST"> 

Item Name <select name ="itemname" id = "itemname">
<option value = '1,5' > A </option>
<option value = '2,5' > B </option>
<option value = '3,5' > C </option>
<option value = '4,5' > D </option>
</select> <br>



Amount <input type="text" name="amount"> <span id = "pane2"></span> <br>

</form>        

</body>

</html>
share|improve this question
What's kgs/gms/ltrs/ml/nos? You have to define them. Your code failed to work because there are errors at the beginning, not because it doesn't work. – Alvin Wong Jul 23 '12 at 6:00
1  
BTW please get familiar with jsfiddle :) it's useful – Kos Jul 23 '12 at 6:05
they are strings..have updated it by putting qoutes. Still nothing is happening! – user1545024 Jul 23 '12 at 6:05

3 Answers

up vote 0 down vote accepted

I hope you are trying to achieve this. http://jsfiddle.net/nsjithin/SbtSF/

  1. To get the value of the selected dropdown you just need to elem.value
  2. Put the updateunit function as global, not in window.onload function.
  3. Arrays starts with index 0. So when spliting don't say c[1], it will give you 5 always, get value from c[0].
share|improve this answer
Thanks, this works perfect :) – user1545024 Jul 23 '12 at 6:29

Instead of : document.getElementById('pane2').innerHTML = b1 ;

Use : document.getElementById('pane2').html(b1);

Reference : http://api.jquery.com/html/

share|improve this answer
Javascript is case sensitive

Check code syntax it should be selectedIndex --

and plz use this -- alert(a[1]); and let me know if its working or not

    var a = new Array();
    a[1] = 'kgs'; 
    a[2] = 'gms'; 
    a[3] = 'ltrs'; 
    a[4] = 'ml'; 
    a[5] = 'nos'; 

    window.onload = function() {

    function updateunit(){

    var b = document.getElementById("itemname");

var b1 = b.options[b.selectedIndex].value;

NEW EDIT

This is the code i saved under my xampp->htdocs as name.php and the code goes like this and i tested in browser as -- localhost/name.php

<?php
/*
I have a drop down box, each option in it has 2 values. I want to dynamically update value in my HTML based on the selection. The value that has to be shown is derived from drop down box values. Here is my code, but nothing seems to be happening here. 
*/
?>

    <html>

        <head><title></title>

        <script type="text/javascript">

    var a = new Array();
    a[1] = 'kgs'; 
    a[2] = 'gms'; 
    a[3] = 'ltrs'; 
    a[4] = 'ml'; 
    a[5] = 'nos'; 

    window.onload = function() {

    function updateunit(){

    var b = document.getElementById("itemname");

    var b1 = b.options[b.selectedIndex].value;

    var c = b1.split(',');

    var d = c[1];

    var e = a[d];

    alert(a[1]);

    document.getElementById('pane2').innerHTML = b1 ;

    }



    updateunit()

    document.getElementById('itemname').onchange = updateunit ;

    }    

    </script></head>


    <body>

    <form action='production.php' method="POST"> 

    Item Name <select name ="itemname" id = "itemname">
    <option value = '1,5' > A </option>
    <option value = '2,5' > B </option>
    <option value = '3,5' > C </option>
    <option value = '4,5' > D </option>
    </select> <br>



    Amount <input type="text" name="amount"> <span id = "pane2"></span> <br>

    </form>        

    </body>

    </html>
share|improve this answer
yes thats what I have used – user1545024 Jul 23 '12 at 6:10
@user1545024 check your code once more --- its selectedindex not selectedIndex and another thing use -- alert(a[1]); – swapnesh Jul 23 '12 at 6:12
nopes nothing is happening – user1545024 Jul 23 '12 at 6:15
@user1545024 check im updating my answer – swapnesh Jul 23 '12 at 6:18

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.