Wednesday, June 8, 2011

How do I turn on off a checkbox with JQuery or Javascript?

For specific checkbox:
check:
$("form #mycheckbox").attr('checked', true);
uncheck:
$("form #mycheckbox").attr('checked', false);

No comments:

Post a Comment