Togggle not working in javascript, i have been trying to find a solution for this problem and nothing seems to work | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Togggle not working in javascript, i have been trying to find a solution for this problem and nothing seems to work

Code: https://code.sololearn.com/W3GPSLP1Tcfi/?ref=app It contains html cas and javascript

25th Jun 2023, 12:39 PM
Gamergoose55
Gamergoose55 - avatar
5 Answers
+ 2
Thanks brother It worked for some reason lol
25th Jun 2023, 3:29 PM
Gamergoose55
Gamergoose55 - avatar
+ 1
In CSS Instead of .ul1:active use .ul1.active (no space) : Is pseudo selector
25th Jun 2023, 12:46 PM
Virtual Pixel
Virtual Pixel - avatar
+ 1
I also tried doing that but it didnt work
25th Jun 2023, 12:48 PM
Gamergoose55
Gamergoose55 - avatar
+ 1
Try this code I just switched : with . <nav class="header"> <label>LOGO <span class="spn">123</span><span class="dot">.</span></label> <button type="button" id="btn" onclick="myfunction()"> Navbar </button> <ul class="ul1"> <li class="hover1">About</li> <li class="hover2">Services</li> <li class="hover3">Latest blog</li> <li class="hover4">Donate</li> </ul> </nav> <style> @media (min-width: 600px) { #btn{ display: none; } } @media screen and (max-width: 600px){ #btn{ display: flex; float: right; margin: 30px; } .ul1{ display: none; } } .ul1.active{ display: flex; justify-content: center; justify-items: baseline; } </style> <script> function myfunction() { var list=document.querySelector('.ul1'); list.classList.toggle('active'); } </script>
25th Jun 2023, 12:51 PM
Virtual Pixel
Virtual Pixel - avatar
+ 1
Gamergoose55 here is my template: The problem with using ul and li is that you have to remove the bullets and you have the extra ul container. you can use <a>, <button>, <p> or anything else, instead. https://code.sololearn.com/W6a2mvSCFTGA/?ref=app
25th Jun 2023, 5:40 PM
Bob_Li
Bob_Li - avatar