Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i check the checkbox, i want it to turn P #099ff, when i uncheck the checkbox i want it to undo that. Should I do this a different way?

$('#checkbox').click(function(){
    if ($('#checkbox').attr('checked')) {
        SOME FUNCTION
    }
}) 

sorry i should have been more clear, when the checkbox is checked, i want it to enable a function, when it's unchecked, to disable that same function.

share|improve this question
"... when it's unchecked, to disable that same function." - the function passed to .click() is invoked on the click event. Therefore I don't understand what you mean by "enable" and "disable". If the checkbox is checked you can invoke function a(). But you must write the reverse function to invoke when the checkbox is not checked. I'm confused. – jensgram Nov 22 '10 at 8:59
You can, of course, .bind() and .unbind() events to another element based on the checkbox state. Is that what you're after? – jensgram Nov 22 '10 at 9:01
Sorry for spamming but I've made an example of what I'm talking about. – jensgram Nov 22 '10 at 9:07

4 Answers

up vote 45 down vote accepted

I would use .change() and this.checked:

$('#checkbox').change(function(){
    var c = this.checked ? '#f00' : '#09f';
    $('p').css('color', c);
});

--

On using this.checked
Andy E has done a great write-up on how we tend to overuse jQuery: Utilizing the awesome power of jQuery to access properties of an element. The article specifically treats the use of .attr("id") but in the case that #checkbox is an <input type="checkbox" /> element the issue is the same for $(...).attr('checked') (or even $(...).is(':checked')) vs. this.checked.

share|improve this answer

it's better if you define a class with a different colour, then you switch the class

$('#checkbox').click(function(){
    var chk = $(this);
    $('p').toggleClass('selected', chk.attr('checked'));
}) 

in this way your code it's cleaner because you don't have to specify all css properties (let's say you want to add a border, a text style or other...) but you just switch a class

share|improve this answer
3  
+1 for generic solution. There is no reason to do $('#checkbox').attr('checked'), however, if we know that #checkbox is a checkbox (if not, the ID is rather misleading). this.checked will do. – jensgram Nov 22 '10 at 8:30
@jensgram @fcalderan +1 Thanks for the tip! I had never seen toggleClass with switch. I'm deleting my post as it's useless. Sorry to be so picky, but I think this answer would be 100% perfect without '#checkbox' being selected twice: maybe use $(this) instead? Or jensgram's solution? – attack Nov 22 '10 at 8:54
@attack of course you can cache your element before using (see the code now). this.checked is even faster than $(..).attr('checked') – fcalderan Nov 22 '10 at 9:04

Try this.

$('#checkbox').click(function(){
    if (this.checked) {
        $('p').css('color', '#0099ff')
    }
}) 

Sometimes we overkill jquery. Many things can be achieved using jquery with plain javascript.

share|improve this answer
$('#checkbox').change(function(){
   (this.checked)?$('p').css('color','#0099ff'):$('p').css('color','another_color');
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.