Forums Forums Search & Filter Pro Toggle a few checkboxes

Viewing 3 posts - 1 through 3 (of 3 total)
  • Anonymous
    #54603

    I have a a lot of checkboxes. But i want too add a toggle so it’s better design/overview.
    Like this:
    <script>
    $(document).ready(function(){
    $(“button”).click(function(){
    $(“p”).toggle();
    });
    });
    </script>

    Where can i do this? Thx.

    Trevor
    #54609

    You want to turn the checkboxes into toggles? You would need to use javascript (or a js library) to do this, and apply it to the control in question.

    Anonymous
    #54804

    thanks,

    I solved it by modify it with jquery by adding html on the right classes.

Viewing 3 posts - 1 through 3 (of 3 total)