Wondering how I can make this work properly:
var ArrayTest = [1,2,3,4,"test"];
var ArrayTest2 = document.getElementsByClassName('mydiv');
ArrayTest2.forEach( function(){
    this.style.display = 'none'; 
});
So ArrayTest comes back as an Array, but ArrayTest2 comes back as an HTMLCollection and forEach throws an "undefined" type error. 
How can I collect an array of elements that all have the same classname and then perform the same CSS on each one?
I would do this a slightly different way, by adding a CSS class, and probably by using jQuery to make your life easier:
$(".mydiv").addClass("no-display");
then in your CSS
.no-display {
    display: none;
}
If you want to assign the specific inline attribute then you could use:
$(".mydiv").css("display", "none");
edit
Ok so for a pure JavaScript approach
for (var i = 0; i < ArrayTest2.length; i++) {
   ArrayTest2[i].style.display = "none"; 
}
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With