I am new to JavaScript and need to create an acceleration formula calculator. I need to first ask what variable the user would like to solve for in the acceleration formula (a=(v-u)/t) and then change textfields based on what the user inputs.
Here is what I have been working on.
function showInputs() {
var variable = document.getElementById("variableCal").value;
if (variable === "v") {
document.getElementById("u-input").style.display = "inline";
document.getElementById("a-input").style.display = "inline";
document.getElementById("t-input").style.display = "inline";
} else if (variable === "u") {
document.getElementById("v-input").style.display = "inline";
document.getElementById("a-input").style.display = "inline";
document.getElementById("t-input").style.display = "inline";
} else if (variable === "t") {
document.getElementById("v-input").style.display = "inline";
document.getElementById("u-input").style.display = "inline";
document.getElementById("a-input").style.display = "inline";
}
else if (variable === "a") {
document.getElementById("t-input").style.display = "inline";
document.getElementById("u-input").style.display = "inline";
document.getElementById("v-input").style.display = "inline";
}
}
<html>
<body>
<h1>Acceleration Calculator</h1>
<form>
<label for="variableCal">Choose a variable to solve for:</label>
<select id="variableCal" onchange="showInputs()">
<option value="v">v</option>
<option value="u">u</option>
<option value="t">t</option>
<option value="t">a</option>
</select>
<br>
<label for="u" id="u-input" style="display: none;">Value of u:</label>
<input type="number" id="u" style="display: none;">
<br>
<label for="a" id="a-input" style="display: none;">Value of a:</label>
<input type="number" id="a" style="display: none;">
<br>
<label for="t" id="t-input" style="display: none;">Value of t:</label>
<input type="number" id="t" style="display: none;">
<br>
<button type="button" onclick="solveEquation()">Solve</button>
</form>
<div id="resultCal"></div>
</body>
You will want to use an 'input' event (something similar to this):
This will listen for any input made to any element on the page, but since we add the conditional statement to check the target type (
'input[type="text"]'
in this case), the listener will ignore inputs made to any other element types. That can be fine tuned if you needed to look at more specific elements.