Нашёл вот такое решение, но возникли пару вопросов:
1 Как вводить только цифры
2 Возможен ли переход в обратную сторону во время удаления номера
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Документ без названия</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#code').keyup(function(){
if ($('#code').val().length > 2) {
$('#number').focus();
}
});
});
</script>
</head>
<body>
<form action="#" method="post">
<div>
<label>+7</label>
<input type="tel" id="code" maxlength="3" name="code" required />
<input type="tel" id="number" maxlength="7" name="number" required />
</div>
<button type="submit">Оформить</button>
</form>
</body>
</html>