Skip to content
Advertisement

How do I toggle CSS features with JS functions

I want to run my function which then starts displaying a CSS element, I currently have

CSS

JavaScript

HTML

JavaScript

JS

JavaScript

(the function is called within another function, the calling of the function itself works)

I’ve tried to chnange the id’s to classes, the order of .popUpNames .show and the regular .popUpNames

https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_popup I tried extrapolating it from this website, but to no avail

Advertisement

Answer

TechStudent10 is right about needing to change .popUpNames .show to .popUpNames.show. You also need to do a couple other things:

  • Change document.getElementById("popUpNames") to document.querySelector(".popUpNames")
  • Remember to call togglePopup() after the DOM has loaded (otherwise it’ll stay hidden).

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement