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 6606503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:24:10+00:00 2026-05-25T19:24:10+00:00

HTML: <div> <input> <label> </div> JS: $(‘div input’).live(‘click’,function(){ alert($(this).is(‘:checked’)); }); $(‘div’).live(‘click,’function(e){ if(!$(e.target).is(‘input’)) $(this).find(‘input’).click(); });

  • 0

HTML:

<div>
    <input>
    <label>
</div>

JS:

$('div input').live('click',function(){
    alert($(this).is(':checked'));
});
$('div').live('click,'function(e){
    if(!$(e.target).is('input'))
        $(this).find('input').click();
});

Whenever I click on the input it accurately displays what the input turns into (if I turn on the input it alerts true)
But whenever I click on the div/label it does the opposite (when the input turns on it alerts false)

Is there a way to test whether the input is being turned on and off in both circumstances instead of 1?

[I assume that the reason this is happening because one is triggered by the browser which happens before jquery (even though I assumed jquery should happen first, but whatever) and in the other case the jquery is running before the trigger of the ‘checked’, but can’t seem to figure out how to either delay the trigger until after the script, or force it to run before the script.]

Thanks in advance!

  • 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-25T19:24:11+00:00Added an answer on May 25, 2026 at 7:24 pm

    You can monitor change() on the checkbox itself, then on DIV click you can change the value in the checkbox directly and then trigger change() instead of click().

    $('input[type="checkbox"]').live('change',function(){
        alert($(this).is(':checked'));
    });
    
    $('div').live('click',function(e){
        if(!$(e.target).is('input')) {
            var $input = $(this).find('input');
            $input.prop("checked", !$input.is(':checked')).change();
        }
    });
    

    Also, if your purpose is to avoid the whole <label for="" /> annoyance, check this out.

    <label><input type="checkbox" value="awesome" /> Check it</label>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given this jQuery: $('div.MvcFieldWrapper :input').focus(function() { $(this).closest('label.MvcDynamicFieldError').fadeOut(); }); And given this HTML: <div class=MvcFieldWrapper>
So I have some html like so: <div id=avatar_choices> <label for=id_choice_0> <input id=id_choice_0 type=radio
Suppose the following HTML div container <div id=container> <form> <div> <label class=error>Name</label> <input type=text
Given this HTML: <div>foo</div><div>bar</div><div>baz</div> How do you make them display inline like this: foo
This is the HTML: <div id=testBlue> <span>hello</span> <span id=testGreen class=testGreen>hello2</span> </div> If I have
Given this HTML snippet: <div id=box style=overflow:auto; width:200px; height:200px; border:1px solid black;> 1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9<br>10<br> 11<br>12<br>13<br>14<br>15<br>16<br>17<br>18<br>19<br>20<br>
$('div.box').html(hello) puts the word hello inside all my div's of class 'box'. They all
I have the following code in my file to load a div with HTML
---HTML <div id=story> <div id=individual> <img src='uploads/1231924837Picture.png'/> <h2>2009-01-14</h2> <h1>Headline</h1> <p>stroy story etc stroy story
I've a HTML page with several Div's that will show the time difference between

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.