How I select class in js? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How I select class in js?

1Html=> <div class="main">hello</div> <button onclick="myfunc()">click</button> ______________________________________ 2CSS :=> .Main{display:none;} ______________________________________ 3JavaScript=> function myfunc() { Var trick = document.getElements ByClassName('main'); Trick.style.display='block' ; } ______________________________________ 1.This program why not work? 2.And also cay you send correct syntax of selecting class?

7th Apr 2019, 12:07 PM
Name
3 Answers
+ 6
trick is an array of the elements It holds all the same class elements. var trick = document.getElementsByClassName('main'); // return an array // so to set the first .main element trick[0].style.display='block' ; // to set the second .main element trick[1].style.display='block' ; // to set the 3rd .main element, if available and so on trick[2].style.display='block' ;
7th Apr 2019, 12:24 PM
Calviղ
Calviղ - avatar
+ 3
Thanks
7th Apr 2019, 2:24 PM
Name
+ 1
You can select class by these two methods 1:- Var trick= document.getElementsByClassName("main"); 2:- var trick= document.querySelector(".main"); Remember: use dot(.) in query selectors and # in to select id's in querySelector if id= "main" Then Var trick = document.querySelector("#main");
9th Apr 2019, 11:25 AM
Prabhat Kumar Singh
Prabhat Kumar Singh - avatar