• Matthew

    (@kidsguide)


    Hi

    How can I hide a setting if another setting is checked?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    A bit vague but maybe you could use some JS

    if (jQuery('.this').is(':checked')) {
      jQuery('.that').hide();
    }

    Thread Starter Matthew

    (@kidsguide)

    How would that work?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    It checks if a setting (a checkbox) is checked and then if it is it applys the CSS style “display: none” to hide the other setting (the other checkbox)

    Thread Starter Matthew

    (@kidsguide)

    It didn’t work.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide Setting If Other Setting is Checked’ is closed to new replies.