<!DOCTYPE html>
<title>Document</title>
<form>
<input type="..." name="..">
<input type="..." name="..">
<input type="..." name="..">
</form>
if(indexParent == tt) {
$(this).closest('.mark').css('transform', 'scale(1)');
} else {
$(this).closest('.mark').css('transform', 'scale(0)');
}
if(indexParent == tt) {
$(this).closest('.mark').addClass('is-checked');
} else {
$(this).closest('.mark').removeClass('is-checked');
}
$(this).closest('.mark').toggleClass('is-checked', indexParent == tt);
var indexMark = $(".js-radio-input").closest('.mark').index();
console.log(indexMark + ' mark-icon'); // некорректно выводит индекс кружка - у всех 0!
https://developer.mozilla.org/ru/docs/Web/JavaScript
https://tc39.github.io/ecma262/