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.
.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 functiona(). 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.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