Widget:Guides/PlatformSwitcher

Revision as of 23:30, 6 December 2024 by Leah (talk | contribs)

<form>

 <fieldset>
   <legend>Select your operating system:</legend>
   <label>
     <input type="radio" name="platform" value="windows" checked /> Windows
   </label>
   <label>
     <input type="radio" name="platform" value="macos" /> macOS
   </label>
   <label>
     <input type="radio" name="platform" value="linux" /> Linux
   </label>
   <label>
     <input type="radio" name="platform" value="haiku" /> Haiku
   </label>
 </fieldset>

</form>

<script type="module" defer> const containers = document.querySelectorAll('.platform-specific'); switch('windows');

function switch(value) {

 for (const x of containers) {
   x.style.display = "none"
 }
 document.querySelector('.' + value).style.display = "block";

} </script>