1) I have javascript
2) I need to limit it only to input numbers.
3) I need to disable blank confirmation.
function checkAge(age) { if (age > 18) { return true; } else{ return confirm('Родители разрешили?'); } } var age = prompt('Ваш возраст?'); if (checkAge(age)) { window.location="2"; alert( 'Доступ разрешен' ); } else { window.location="3"; alert( 'В доступе отказано'); }