Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted about 3 years ago

HTML, CSS, JavaScript

accessibility
Valter Kampos•140
@VKampos2
A solution to the Pricing component with toggle challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

Solution retrospective


This was the first time i used javaScript, i found it difficult to make the toggle, but the most difficult was to add the function to the input checkbox checked, the querySelector wasn't working, so i had to be repetitive. how can i do it different? thanks for your feedback.

function myfunction() { let checkBox = document.getElementById("toggle"); if (checkBox.checked) { document.getElementById("yearllyPrice").style.display = "none"; document.getElementById("yearllyPrice1").style.display = "none"; document.getElementById("yearllyPrice2").style.display = "none" document.getElementById("monthlyPrice").style.display = "flex"; document.getElementById("monthlyPrice1").style.display = "flex"; document.getElementById("monthlyPrice2").style.display = "flex"; } else { document.getElementById("yearllyPrice").style.display = "flex"; document.getElementById("yearllyPrice1").style.display = "flex"; document.getElementById("yearllyPrice2").style.display = "flex"; document.getElementById("monthlyPrice").style.display = "none"; document.getElementById("monthlyPrice1").style.display = "none"; document.getElementById("monthlyPrice2").style.display = "none"; } }

Code
Couldn’t fetch repository

Please log in to post a comment

Log in with GitHub

Community feedback

  • Eileen dangelo•1,600
    @Eileenpk
    Posted about 3 years ago

    Hey Vkampos2!
    Great job on this project! You are very good at CSS! I went through your JS / HTML code and this might help you, if you make the changes and paste the JS code it should work.

    1- The QuerySelector might not have worked because you have your script for JavaScript in the head tag, put at the bottom of HTML page between the body tag and the html tag.

    2- Take off the onclick"myfunction" in the HTML (this is for separation of concerns)

    3- Add the class of yearly-price to all prices for the annual price in html

    4- Add the class of hidden to CSS and set to display none do NOT add the show class to the html it will mess it up!
    .show { display: none; }

    5- add the class of yearly-price to CSS and set to display none

    .yearly-price { display: none; }

    • Remove price display none in CSS file .price { display: none; }

    new JS code :)

    const checkBox = document.getElementById("toggle") const hiddenPrice = document.querySelectorAll('.price') const yearlyprice = document.querySelectorAll('.yearly-price')

    checkBox.addEventListener('click', () => { hiddenPrice.forEach(el => { el.classList.toggle('show'); }); yearlyprice.forEach(el => { el.classList.toggle('yearly-price'); }); });

    Also here is a link to my solution to this project if you want to see another way of doing the JS.

    https://www.frontendmentor.io/challenges/pricing-component-with-toggle-8vPwRMIC/hub/pricing-component-with-toggle-made-with-vanilla-js-and-flexbox-KFaG31YBzF

    Hopefully, this was helpful to you, and keep up the good work! Please let me know if you have any more questions!

    Marked as helpful

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

How does the accessibility report work?

When a solution is submitted, we use axe-core to run an automated audit of your code.

This picks out common accessibility issues like not using semantic HTML and not having proper heading hierarchies, among others.

This automated audit is fairly surface level, so we encourage to you review the project and code in more detail with accessibility best practices in mind.

How does the CSS report work?

When a solution is submitted, we use stylelint to run an automated check on the CSS code.

We've added some of our own linting rules based on recommended best practices. These rules are prefixed with frontend-mentor/ which you'll see at the top of each issue in the report.

The report will audit all CSS, SCSS and Less files in your repository.

How does the HTML validation report work?

When a solution is submitted, we use html-validate to run an automated check on the HTML code.

The report picks out common HTML issues such as not using headings within section elements and incorrect nesting of elements, among others.

Note that the report can pick up “invalid” attributes, which some frameworks automatically add to the HTML. These attributes are crucial for how the frameworks function, although they’re technically not valid HTML. As such, some projects can show up with many HTML validation errors, which are benign and are a necessary part of the framework.

How does the JavaScript validation report work?

When a solution is submitted, we use eslint to run an automated check on the JavaScript code.

The report picks out common JavaScript issues such as not using semicolons and using var instead of let or const, among others.

The report will audit all JS and JSX files in your repository. We currently do not support Typescript or other frontend frameworks.

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub