Michalio wrote: ↑Fri Jul 29, 2022 2:45 am
It is partially impossible, because you don't know the day and month, you can for example assume that today is someones birthday:
Code: Select all
function getDOBFromAge(age) {
const date = new Date();
date.setFullYear(date.getFullYear() - age);
return date.toISOString().substring(0, 10);
}
const dob = getDOBFromAge(18)
console.log({dob});
I could not understand your solution. I need DOB assuming today is his birth day. In my softwere there is text type input box. When for example 20 is entered softwere should return DOB 29-07-2002 into input box which is date type of input box. Below are my input as well code. When I change input type from text to date it donot give me result. Please help me. I tried code you suggested but actually I could not understand it fully. Thanks for your reply.
Code: Select all
<div class="form-group">
<label>Age</label>
<input class="form-control" id="agetxt" onkeyup="test()" name="age" value="<?php echo trim($age); ?>">
</div>
<div class="form-group">
<label>D.O.B.</label>
<script>
function test() {
var age = document.getElementById('agetxt').value;
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1;
var yyyy = today.getFullYear();
var poonam = yyyy - age;
if(dd<10)
{
dd='0'+dd;
}
if(mm<10)
{
mm='0'+mm;
}
today = dd+'/'+mm+'/'+yyyy;
document.getElementById('dobresultt').value = dd+'-'+mm+'-'+poonam;
}
function getDOBFromAge(age) {
const date = new Date();
date.setFullYear(date.getFullYear() - age);
return date.toISOString().substring(0, 10);
}
const dob = getDOBFromAge(18)
console.log({dob});
</script>
<input class="form-control" type="text" id="dobresultt" name="dobt" value="<?php echo trim($dobt); ?>"required>
<input class="form-control" type="date" id="dobresult" name="dob" value="<?php echo trim($dob); ?>"required>