Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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()
        }
    }
share|improve this question
Can you show us your HTML as well? Preferably on JSFiddle.net – Amaan Cheval Aug 31 '12 at 17:28
1  
With this code, I suppose no one can see why. Try cooking up a jsfiddle @ jsfiddle.net to demonstrate the problem. – KooiInc Aug 31 '12 at 17:28

2 Answers

up vote 1 down vote accepted

Internet Explorer's implementation of getElementById will return an element with the name attribute if it matches the parameter of the function. Make sure you use the id attribute in your HTML:

<!-- wrong -->
<input name="Formtype" />

<!-- right -->
<input id="FormType" />
share|improve this answer

if i understood your problem correctly, you must be calling the function showYear(); before the DOM ready.

try calling the function once the DOM is ready.

share|improve this answer
hi, yes the function is being called when a user selects one of two options from a drop down box – Rich Aug 31 '12 at 17:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.