I have this line of code that works fine in IE, but I cannot get it to work in Netscape. What would the Netscape equivalent be??
var div=document.getElementById(dataSet);
// get the input elements within the div
var inputMenus=div.getElementsByTagName('select')
for (i=0; i<inputMenus.length;i++) {
document.getElementById(txtFieldName).value = document.inputMenus.getAttribute('name');
}
Thanks,
var div=document.getElementById(dataSet);
// get the input elements within the div
var inputMenus=div.getElementsByTagName('select')
for (i=0; i<inputMenus.length;i++) {
document.getElementById(txtFieldName).value = document.inputMenus.getAttribute('name');
}
Thanks,