Skip to main content

Simple jQuery code snippet to check a checkbox and also uncheck a checkbox. This is achieved by changing the checked attribute of the input element (which are commonly used in forms).

// Check a checkbox
$('input[name=hierarchy_chk]').attr('checked', true);

// Uncheck a checkbox
$('input[name=hierarchy_chk]').attr('checked', false);