I have been fighting with this for a couple of days now. I can't see why this wouldn't work in Chrome, but does work in IE.
The required drop-down box I want to appear doesn't, and it also does not write to the console screen. Any help would be great.
Thanks
function showYear() {
var typeReq = document.getElementById("Formtype");
var aYear = document.getElementById("year");
if (typeReq.value == "Upload") {
console.log('upload selected');
aYear.style.visibility ="visible";
} else {
console.log('View selected');
loadUpload()
}
}