vote up 0 vote down star
	$('input[type=checkbox]').unbind().click(function(e){
		$(this).attr('checked', true)
		return false;
	});

I NEED to return false because I have an event on its parent and I don't want to trigger that. It just WON'T check that checkbox :| Already it drive me insane.

I think I used this before on another project and I had no problems at all, but now... crazy :(

Thank you guys!

flag

3 Answers

vote up 2 vote down check
$('input[type=checkbox]').unbind().click(function(e){
    e.stopPropagation();
});

Edit: I'm not sure what you need .unbind() for, but you should beware that that is canceling any other events you've put on those checkboxes.

link|flag
thanks, that works like a CHARM! – Ionut Staicu Nov 4 '08 at 18:19
vote up 1 vote down

You're missing a ] at the end of your jQuery selector

link|flag
this should have been a comment, and now should be deleted – John Sheehan Nov 4 '08 at 17:37
why? tha twould prevent it from working. – Shawn Simon Nov 4 '08 at 17:47
vote up -1 vote down

You're missing a ] at the end of your jQuery selector

Actually i don't. I miss typed first time. In my code is correct this part. Sorry for this

link|flag

Your Answer

Get an OpenID
or

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