I have the following function that I want to hide some of the text input fields in my form. all the fields I want hidden are contained in the div 'site2'
<script language="Javascript">
function showHide(value) {
if (value=='yes') {
document.getElementById(site2).style.display = "none";
document.getElementById(site2).style.display = "block";
document.add.addSite2Line1.disabled=true;
}
else if (value=='no') {
document.getElementById(site2).style.display = "inline";
document.getElementById(site2).style.display = "none";
}
}
}
</script>
and a drop down box created. it should show when no is selected
<label><span>Single Site?</span><Select name="field" onchange="showHide(this.selectedIndex);"></label>
<Option value="yes">yes</option>
<Option value="no">no</option>
</Select><br /><br /><br /><br />
However when I run the page nothing happens at all
getElementById(site2)and notgetElementById("site2")? The former is a variable name (and if there's no such variable,undefinedwill be returned), the latter is a string. Try toalert(site2)to see what value is contained in it. – Slanec Jul 28 '12 at 5:18