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

  • Home
  • SEARCH
  • 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 1056173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:40:39+00:00 2026-05-16T17:40:39+00:00

Can the same disable be used to turn off a function using a checkbox

  • 0

Can the same “disable” be used to turn off a function using a checkbox for example? Any out there?

  • 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-16T17:40:40+00:00Added an answer on May 16, 2026 at 5:40 pm

    If I’ve understood what you’re asking for, you could assign and remove a click handler for a function, or something along the lines:

    <script type="text/javascript">
    
        function toggleStatus() {
            if ($('#toggle').is(':checked')) {
                $('#alert').click(function() {
                    hello();
                });
    
                $("#toggleLabel").text("on");
    
            } else {
                $("#toggleLabel").text("off");
                $('#alert').unbind('click');
            }   
        }
    
        function hello() {
            alert('hello');
        }
    
    </script>
    
    <form id="toggleForm">
        <label id="toggleLabel" for="toggle">off</label>
        <input type="checkbox" id="toggle" name="toggle" onchange="toggleStatus()" />
    </form>
    
    <a id="alert" href="#">Function</a>
    

    —

    Update:

    Hmm, not sure if this is ideal, but this should mimic what you’re looking for:

    <script type="text/javascript">
    
        function toggleStatus() {
            if ($('#toggle').is(':checked')) {
                $("#toggleLabel").text("on");
                $("#alert").tipTip();
                $("#tiptip_holder").css('display', '');
            } else {
                $("#tiptip_holder").css('display', 'none !important');
                $("#toggleLabel").text("off");
            }   
        }
    
    </script>
    
    <form id="toggleForm">
        <label id="toggleLabel" for="toggle">off</label>
        <input type="checkbox" id="toggle" name="toggle" onchange="toggleStatus()" />
    </form>
    
    <a id="alert" href="#" title="This is a tooltip">Tooltip</a>
    

    I tried looking into unbinding etc, but nothing seemed to work.

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

Sidebar

Ask A Question

Stats

  • Questions 515k
  • Answers 515k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Roo uses AspectJ behind the scenes to manage all of… May 16, 2026 at 6:30 pm
  • Editorial Team
    Editorial Team added an answer You're correct that you're never writing NUL, which is a… May 16, 2026 at 6:30 pm
  • Editorial Team
    Editorial Team added an answer var HT* is not valid C++ syntax (looks C#-inspired to… May 16, 2026 at 6:30 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

The too long; didn't read version: Is there any way to disable the automatic
When using Oracle you can create a disabled trigger specifing the word DISABLE before
I am using a e-commerce package and there are sections my client wants disable
My Goal: Checking radio button will disable the 'same' column of dropdownlist in a
Possible Duplicates: [.NET] How do I disable a system device? Win32 API function to
Like most laptops, mine (a Dell Inspiron 1420) has a small button which can
I'm facing the same issue others already posted on SO: On reading objects from
I have an mdb which used to contain a bunch of linked tables. These
I'm new to JQuery, so this is probably a very dumb question. I've used
Its really hard to search the any combination of keywords in search engine about

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.