You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
376 B

window.onload = function () {
setInputCheckedStatus();
var agree = $("js-agree");
var submit = $("js-submit");
submit.disabled=!agree.checked;
agree.onclick = function () {
submit.disabled=!this.checked;
};
submit.onclick=function () {
this.form.action = "./index.php?lang=" + getAddressLang() +"&step=check";
};
};