+ 1
Calc the age in a box
please help me to calc the age of a person by clicking a box contains the number(age) and {onclcik) return the value to a script to which will {alert} {DateOfBirth} thanks
5 Respuestas
+ 2
you can give I'd to a input and a button should contain the onclick
+ 2
try this
<input type ="text" Id="text"/>
<button onclick="x()">DateOfBirth</button>
<script> function x(){alert(document.getElementById("text").value)}</script>
0
Ok
<html>
<body>
<script>
var x = smthn;
</script>
<input type="button", value="DateOfBirth", onclick="x();">
<body>
</HTML>
0
what I really need is the script that will return the value of the input and say the dob
0
I'll try thanks so much Sun