Post date: Feb 2, 2011 9:06:04 AM
Check if the checkbox is checked =)
$('input').is(':checked')
$('input').attr('checked')
Changing the state of the checkbox:
$('input').attr('checked', true); // or false to uncheck