Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4539072
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T14:53:46+00:00 2026-05-21T14:53:46+00:00

I have a page with 50 hidden checkboxes, and I want to be able

  • 0

I have a page with 50 hidden checkboxes, and I want to be able to toggle each checkbox by clicking on a visible link. The actual checkboxes have to stay hidden…so… Is there a better way to do this, with a JS function so I don’t have to include the entire onclick in each link? And I use mootools, not jQuery.

This works to activate a checkbox:

<a href="#template-selections" onclick="javascript:check('field_select_p10');" class="add_app">Select</a>

But to toggle it, this works:

onclick="if (event.target.tagName != 'INPUT') document.getElementById('field_select_temp_professional_10').checked = !document.getElementById('field_select_temp_professional_10').checked"
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T14:53:47+00:00Added an answer on May 21, 2026 at 2:53 pm

    None of what you posted is actually mootools code, you may as well not use mootools…

    Markup:

    <a href="#template-selections" data-id="10" class="add_app">Select</a>
    

    js in your domready:

    document.getElements("a.add_app").addEvents({
        click: function(e) {
            if (e.target.get("tag") != 'input') {
                 var checkbox = document.id("field_select_p" + this.get("data-id"));
                 checkbox.set("checked", !checkbox.get("checked"));
            }
        }
    });
    

    If you have 100+ then I suggest you look at using event delegation from mootools-more and add just one event to the parent instead of creating 100 events and storing 100 functions that deal with it.

    This is coding to patterns, and it involves changing your markup to make things work. You can also make the change based upon walking the DOM in relation to the clicked item, e.g. this.getParent().getElement("input[type=checkbox]"), or something can mean you don’t need to store a relative id in the element itself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following CSS on my HTML page: <style type=text/css> .hidden {display:none;} .visible
I have a table style page with rows. Each row has a checkbox. I
I have a page that has a gif animation in a hidden div. Upon
I have certain panels on my page that are hidden under certain circumstances. For
I have a GridView on a .aspx page with a hidden column which has
I have a hidden input field on a page <div id=SomeDiv> <input type=text name=ID
I have content loaded into a hidden iframe on a page and I'm wanting
I have a number of dropdowns and divs that are hidden when the page
I have a page designed with many HTML Tables which are hidden or displayed
I have several places on the page where there is text Add This text

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.