'selectedIndex' Example : selectedIndex : Javascript Properties : JavaScript Reference examples (example source code) Organized by topic

JavaScript Reference
C++
PHP
JavaScript Reference Home »  Javascript Properties   » [  selectedIndex  ]   
 



'selectedIndex' Example

    
<html>
<body>
<script>
function function1(colors) {
    var col = (colors.options[colors.selectedIndex].value);
    if (col) {
        document.bgColor = col; 
    
    alert("SelectedIndex value = "+col)

</script>
<form method="post" action="">
<select name="colors" onChange="function1(this);">
    <option value="white" selected>White</option>
    <option value="cyan">Cyan</option>
    <option value="ivory">Ivory</option>
    <option id="myO" value="blue">Blue</option>
    <option value="red">Red</option>
    <option value="lightblue">Lightblue</option>
    <option value="beige">Beige</option>
</select>
</form>

    
      
      
Related examples in the same category
1.  'selectedIndex' Syntax and Note
2.  'selectedIndex' is applied to
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.