'onChange' Example : onChange « Event Handlers Reference « JavaScript Reference

'onChange' Example

    
<head>
<script language="JavaScript">
    function function1(colors) {
        var col = (colors.options[colors.selectedIndex].value);
        if (col) { 
           document.bgColor = col; 
        }
        alert("The background color has changed to "+col) 
    } 
</script></head>
<body>
<select name="colors" onChange="function1(this)">
    <option value="white" selected>White</option>
    <option value="cyan">Cyan</option>
    <option value="ivory">Ivory</option>
</select>
</body>

    
      
      








Related examples in the same category

1.'onChange' Syntax and Note
2.'onChange' Properties
3.'onChange' is applied to