Code:
var d = document.getElementsByName("d"); // this works
d.style.height = "100px"; // this does not work, error "style is undefined"
d.style.setAttribute("height","100px"); // this does not work, error "style is undefined"
d.clientHeight = "100px"; // this does not work
That's it. Just trying to keep it basic after hours of pulling my hair out.
Edit:
Found the problem. Left out one of those pesky indexers :P
For example, an array of radio buttons does not have a single style attribute. However, one specific radio button does.
I wish I could close this thread and save myself some ridicule. Lesson learned