User-893317190 posted
Hi fatihbarut,
You could listen your input's keyup event when the user input tab, you could let your next textbox focused.
Below is a sample.
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<input type="date" id="date"/>
<input type="text" />
<script>
$(function(){
$("#date").keyup(function (e) {
// 9 is tab's keyCode
if (e.keyCode === 9) {
// make the next input focused
$(this).next("input").focus();
}
})
})
</script>
The result.

Best regards,
Ackerly Xu