I've been trying to use setAttribute to change the name of the select tag from the oldName to the newName, however when I load the page and then look at the source, the oldName remains. Ultimately, I wanted to add an attribute "onchange","function();" but I can't even get the JS to change the name of the tag. Any help would be appreciated. Thanks in advance. I tested this on Mac OS X: Chrome, FF, and Safari.
<html>
<head>
</head>
<body>
<select name="oldName">
<option value="0">Essay 1</option>
<option value="1">Essay 2</option>
<option value="2">Essay 3</option>
</select>
<script type="text/javascript">
document.getElementsByTagName("select").item(0).setAttribute("name","newName");
</script>
</body>
</html>