HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Search results

  1. K

    Cant show/hide within <details>

    if you wrap something in <summary> and then <details> the details dropdown will not let javascript control what is shown or hidden in it because the details by default is hide or show so it overrides the javascript. So I was trying to find a way to override this
  2. K

    Cant show/hide within <details>

    Hello, It seems that I cannot show/hide within the HTML <details> tag . I am using the following javascript ` document.addEventListener('change', function() { var usaDiv = document.querySelector('.usa'); var canDiv = document.querySelector('.can'); var regionDropdownValue =...
Back
Top