Hey guys i have a question, so i need boxess in my website to store name, weight, etc
now i know this is done with html
but i need to be able to control and do math with those number
how i would do thaht with java ? i mean i know how to do it with java but...
what am trying to say is how i manipulate the entry of the html box with java
`<!DOCTYPE html>
<html>
<body>
<form action="">
Weigth: <input type="text" name="weigth"><br>
Age: <input type="text" name="age ">
</form>
<script type="text/javascript">
/** What i do here if i want to lets say multiply age and weigth and put the result in another box **/
</script>
</body>
</html>
`
Thanks