HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/ZelfVerkopen/zelfverkopen.nl/resources/assets/js/kms/onOff.js
function toggleOnOff($id) {
    let onOffBox = document.getElementById($id);
    let onOffSwitch = document.getElementById($id + '-switch');

    if(onOffBox.checked){
        onOffBox.value = '1';
        onOffSwitch.classList.add('on');
    }
    else{
        onOffBox.value = '0';
        onOffSwitch.classList.remove('on');
    }
}

function toggleOnOffSwitch($id) {
    let onOffBox = document.getElementById($id);
    onOffBox.checked = (onOffBox.checked) ? onOffBox.checked = false : onOffBox.checked = true;
    toggleOnOff($id);
}