Could anyone please explain to me in some details about getElementsByTagName and specifically how to properly iterate through the node list returned by getElementsByTagName.
Here is my simple script where I want to display a selected index in the alert window but with the use of getElementsByTagName. I know it might not be a very good solution to use getElementsByTagName in order to get the selected option value but still I would like to use getElementsByTagName as it may help me to better understand how this works
<script language="JavaScript">
<!--
function process(){
var a = document.getElementById('mySelect');
var res = a.options[a.selectedIndex].text;
alert(res);
}
//-->
</script>
And here is an HTML snippet:
<body>
<select name=""id="mySelect" onchange="process()">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
So my question is:
Can anyone tell me how to make this script work using getElementsByTagName instead of getElementById?
Many thanks!