Hi,
Try this one out:
index.html
Code:
<select id="destination">
</select>
<div onclick="getSelected();">Select</div>
<div id="out"></div>
Javascript:
Code:
var airport = new Array('New Delhi', 'Chennai', 'Bangalore', 'Goa', 'Hyderabad', 'Kolkata', 'Mumbai', 'Pune', 'Agra', 'Agatti Island');
function init() {
var val_option = "";
for ( var i = 0; i < airport.length; i++) {
val_option = val_option + "<option value=\"" + airport[i] + "\" id=" + i+ ">" + airport[i] + "</option>";
}
document.getElementById("destination").innerHTML = val_option;
}
function getSelected(){
var dstSelection = document.getElementById("destination");
var destination = dstSelection.options[dstSelection.selectedIndex].value;
document.getElementById("out").innerHTML = destination;
}
Br,
Ilkka