Reputation: 878
I'm new to Javascript and HTML and am trying to do some form validation. When the validation() fails for some input like
<input type="text" name="firstName" />
I'd like to have an error message show next to the field that was in error. How do I find the location of where to put the message? Or do I have some sort of label that's hidden to set when there is an error? Thanks.
Upvotes: 3
Views: 8478
Reputation: 26177
You can have a div tag such as <div id="errorMsg"></div>
, and in your javascript, when validation fails, use:
document.getElementById('errorMsg').innerHTML = "error msg";
Upvotes: 3