tipochok,
Что-то я сомневаюсь, что в отдельном файле все работает нормально... Покажите работающий макет
Если я правильно догадался, что вам нужно, то это должно выглядеть примерно так:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function () {
var inpCont = $('input[id^="continue"]');
inpCont.each(function () {
$(this).attr('disabled', true);
});
$("#agree1").on('change', function () {
if ($(this).prop("checked")) {
inpCont.each(function () {
$(this).attr('disabled', false);
});
} else {
inpCont.each(function () {
$(this).attr('disabled', true);
});
}
//Еще коды...
});
});
</script>
<input type="checkbox" class="agree1" value="1" id="agree1">Can see project page<br>
<input type="checkbox" id="continue1" class="agree2" value="3" />Can see project order data<br>
<input type="checkbox" id="continue2" value="7" />Can see cardused info<br>