Skip to content
Advertisement

How do I add the error message for BMI calculator fields next/under them instead of on the top of the page?

So I’m trying to get the error message to go next to the field, but I have no idea what I’m doing, I’m pretty new at this, sorry to bother you guys.

Here’s the whole code:

JavaScript
JavaScript

Advertisement

Answer

To do it your way you would need a separate error message area next to each input, and each one would need a unique ID – currently you have two elements whose ID is “errorMsg”, one of which is in the wrong place in the layout. An ID must (by definition) uniquely identify an element, so clearly that isn’t going to work. When you refer to “errorMsg” in your code, JavaScript will just pick the first one it finds and assume you meant that one. It has no way of telling them apart.

But anyway for the validation you’re trying to do, you don’t actually need to write your own code at all. If you put your fields inside a form, and handle the submit event of the form, you can then use HTML5 validation rules on the fields themselves to restrict the allowed input.

Here’s a demo:

Note the addEventListener to handle the “submit” event of the form and run some Javascript. Note also the <form> and </form> tags round the fields and button, and lastly the type="number", required, min and max attributes on the input fields themselves.

JavaScript
JavaScript

You can learn more about HTML form validation here: https://developer.mozilla.org/en-US/docs/Learn/Forms/Form_validation

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement