$('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!