Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What i'm trying to do is add a new <param> tag inside an <object> that is already loaded to a page. This is because i'm trying to stop the flash element of the object from coming in front of all my drop-down menus (add wmode=opaque). I'm trying the following:

if (navigator.appName == 'Microsoft Internet Explorer')
{
    var elements = document.getElementsByTagName('object');
    var i =0;
    for (i=0; i<elements.length ; i++){ //check all the objects in the page
        var children = elements[i].childNodes;
        var j = 0;
        for (j=0 ; j<children.length; j++){
            var paramname = children[j].name;
            var paramvalue = children[j].value;
            if (paramname=="movie" && paramvalue.indexOf("blahblah") != -1) { //this is the object i'm interested in
                var newparam = document.createElement('param');
                newparam.setAttribute('name', 'wmode');
                newparam.setAttribute('value', 'opaque');
                elements[i].appendchild(newparam); //this line causes the error
                return;
            }
        }
    }
}

running the script gives me this error: "Object doesn't support property or method 'appendchild'" (Line: 22)
What am i doing wrong?

Thank you in advance.

share|improve this question

1 Answer

up vote 2 down vote accepted

have you tried with big C.

elements[i].appendChild(newparam);
share|improve this answer
Thanks Andreas! Struggling so many hours i didn't even notice. Even rewriting the code i kept writing it with a small c... – CrisDeBlonde Jan 12 '12 at 15:05

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.