$("#contributorTerms").load(url);
});
- $("#read_tou").on("click", function () {
- var agreebtn = document.getElementById('agree');
- agreebtn.disabled=!this.checked;
+ $("#read_ct").on("click", function () {
+ $("#continue").prop("disabled", !($(this).prop("checked") && $("#read_tou").prop("checked")));
+ });
+
+ $("#read_tou").on("click", function () {
+ $("#continue").prop("disabled", !($(this).prop("checked") && $("#read_ct").prop("checked")));
});
});