اختر البرنامج
نشاط الشركة
اختر البرامج التي تريد الاستعلام عنه
$(document).ready(function() {
// Assuming the checkbox you want to check has the ID "targetCheckbox"
// $('#targetCheckbox').hide(); // Hide the target checkbox initially
// Assuming the item you want to click has the class "formItem"
$('#vokoitem1').click(function() {
// Assuming the checkbox you want to check has the class "checkboxToCheck"
var checkboxToCheck = $(this).find('.checkbox-842');
if (checkboxToCheck.is(':checked')) {
checkboxToCheck.prop('checked', false);
} else {
checkboxToCheck.prop('checked', true);
}
});
});