М
let nameEd, binEd, binID, InputRadio;
const educationLink = document.querySelectorAll('.groupTable__link-down');
educationLink.forEach(e => {
e.addEventListener('click', (event) => {
InputRadio = e.querySelector('input[type=radio]');
nameEd = e.querySelector('.uf-name-education');
if (event.target !== InputRadio) {
InputRadio.checked = !InputRadio.checked
}
binEd = e.getAttribute('data-bin');
binID = e.getAttribute('data-id');
})
});