Html display error text

Show Error Messages In HTML Forms (Simple Examples)

Welcome to a quick tutorial on how to show error messages in HTML forms. This is probably one of the major bugbears for some beginners, how do we handle and show error messages for HTML forms?

There are no fixed ways to show errors in HTML forms, but the common methods to display error messages are:

  1. Simply add checking attributes to the HTML form fields, and the browser will automatically show the errors. For example,
  2. Use Javascript to show custom error messages as the user types in the fields.
  3. Collectively show all error messages in a popup box when the user submits an invalid form.
  4. Show error messages below the invalid fields.
Читайте также:  Python list перенос строк

That covers the broad basics, let us walk through detailed examples in this guide – Read on!

ⓘ I have included a zip file with all the source code at the start of this tutorial, so you don’t have to copy-paste everything… Or if you just want to dive straight in.

TABLE OF CONTENTS

DOWNLOAD & NOTES

Firstly, here is the download link to the example code as promised.

QUICK NOTES

If you spot a bug, feel free to comment below. I try to answer short questions too, but it is one person versus the entire world… If you need answers urgently, please check out my list of websites to get help with programming .

EXAMPLE CODE DOWNLOAD

Click here to download all the example source code, I have released it under the MIT license, so feel free to build on top of it or use it in your own project.

DISPLAY ERROR MESSAGES

All right, let us now get into the various examples of displaying error messages in an HTML form.

EXAMPLE 1) DEFAULT ERROR DISPLAY

Oh no, displaying error messages is SO DIFFICULT! Not. Just add the form checking attributes to the fields:

  • required Self-explanatory. A required field that cannot be left blank.
  • min-length max-length The minimum and maximum number of characters allowed.
  • min max For number fields only, the minimum and maximum allowed values.
  • pattern This field must match the custom pattern. Will leave a link in the extras section below if you want to learn more.

Yes, that’s all. The browser will do the rest of the magic.

EXAMPLE 2) SHOW ERRORS AS-YOU-TYPE

      

This one is a little naggy and requires some Javascript. A couple of functions and properties to take note of here:

  • document.getElementById(«ID») Get element by ID. Captain Obvious.
  • FIELD.addEventListener(«input», FUNCTION) Run this function whenever the user types something in the field.
  • FIELD.validity.tooLong FIELD.validity.tooShort FIELD.validity.valueMissing We can actually target various invalid statuses and show different messages. Will leave a link in the extras section below to the full list.
  • FIELD.setCustomValidity(«MESSAGE») and FIELD.reportValidity() Show custom error message.

EXAMPLE 3) DISPLAY ERROR MESSAGES IN POPUP

       

  • A novalidate has been added to the tag. This disables the default browser form checking, and we do our own in Javascript using onsubmit=»return check()» .
  • The Javascript is pretty long-winded but straightforward.
    • Use var error = «» to collect all the error messages.
    • Fetch the field we want to check field = document.getElementById(«ID») .
    • Add a message if it is invalid if (!field.checkValidity()) < error += "ERROR"; >
    • That’s all, repeat the check for all fields.
    • Lastly, show the error message if not empty and don’t allow the form submission if (error !=»»)

    EXAMPLE 4) SHOW ERROR MESSAGE UNDER FIELD

       .err < background: #ffe6ee; border: 1px solid #b1395f; >.emsg   Number    

    Lastly, this is pretty much similar to the popup example.

    • Use novalidate and onsubmit to do our own customization.
    • But instead of showing in a popup, we attach a below all fields.
    • On an invalid input, we show the error message in the instead.

    That’s all for the tutorial, and here is a small section on some extras and links that may be useful to you.

    THE END

    Thank you for reading, and we have come to the end. I hope that it has helped you to better understand, and if you want to share anything with this guide, please feel free to comment below. Good luck and happy coding!

    Источник

    How to display error message in html form with javascript

    In this tutorial we are going to see how to display form errors under every input field with javascript.
    In the example below we have a register form, and we are going to validate every field to check its value.
    If the field is empty we are going to show an error message under the empty field.
    Click on the submit button and try it out.

    Ok, now let’s see how we do this.
    By the way you can download the source code of the demo if you scroll at the end of the page.

    Files we need

    We create two files in the same folder.

    • An index.php file in which we are going to write the html code.
    • And a script.js file to write the javascript code.
    • If you download the source code you will get also the stylesheet.

    The html code

    Below we have the form element its the same form that you tried out in the demo above.
    Let quick see what we have here.

    <form name="register-form" action="" method="post"> <label>Enter Username</label> <input type="text" name="username"> <p ></p> <label>Enter Password</label> <input type="text" name="password"> <p ></p> <label>Enter email</label> <input type="text" name="email"> <p ></p> <button type="submit" name="submit">Submit</button> <p ></p> </form> <script src="https://digitalfox-tutorials.com/script.js"></script> 
    • In line 1 we gave the form a name by setting the name’s attribute value to «register-form».
      We are gonna use the name attribute in the javascript code to target the form.
    • In line 3 we have the username input field, and under it in line 4 we have a p tag that acts as a placeholder.
      We gave the paragraph element a generic class of «error» to give every error element the same style. But we gave it also a unique class of «username-error» so we can target it from the javascript file and display the message.
      The error element is hidden by default in the css file, setting the display property to «hidden».
      We are going to change the display property to «block» in the javascript code if an error occurs.
      We will see that when we get to the javascript section.
    • We do the exact same thing in line 7-8 with the password field,
      and in line 11-12 with the email input field.
    • In line 14 we have the submit button.
    • In line 16 we have a p tag to display the success message.
    • And in line 19 we have a script tag pointing to the javascript file.

    Now let’s go write the javascript code.

    The JavaScript code

    In the javascript file i will target the register form and add an onsubmit event-listener. So every time we click on the submit button a function will run. I will pass in the function as an argument the event object, because i need the preventDefault() method to stop the form submit the data to the server if an error occurs.

    document.forms['register-form'].onsubmit = function(event) < if(this.username.value.trim() === "")< document.querySelector(".username-error").innerHTML = "Please enter a username"; document.querySelector(".username-error").style.display = "block"; event.preventDefault(); return false; >if(this.password.value.trim() === "") < document.querySelector(".password-error").innerHTML = "Please enter a password"; document.querySelector(".password-error").style.display = "block"; event.preventDefault(); return false; >if(this.email.value.trim() === "") < document.querySelector(".email-error").innerHTML = "Please enter a email"; document.querySelector(".email-error").style.display = "block"; event.preventDefault(); return false; >> 

    Explaining the logic

    • In the first if statement i will target the username input field and get the value, this.username.value.

    And that’s it, this is how to display error message in html form with javascript.
    I hope you like it.

    Source code

    Thanks for reading, i hope you find the article helpful.
    Please leave a comment if you find any errors, so i can update the page with the correct code.

    You can download the source code and use it in any way you like. Get source code

    If you like to say thanks, you can buy me a coffee.

    Buy me a coffee with paypal

    Источник

    Simple Custom Error Messages With Pure CSS

    Welcome to a quick tutorial on how to create custom error messages with pure CSS. By now, you should have experienced the intrusive default Javascript alert box. Every time it shows up, users get scared away.

    We can create a custom non-intrusive error message with HTML .

    Yep, it is that simple. Let us “improve and package” this simple error notification bar so you can reuse it easily in your project – Read on!

    ⓘ I have included a zip file with all the source code at the start of this tutorial, so you don’t have to copy-paste everything… Or if you just want to dive straight in.

    TABLE OF CONTENTS

    DOWNLOAD & NOTES

    Firstly, here is the download link to the example code as promised.

    QUICK NOTES

    If you spot a bug, feel free to comment below. I try to answer short questions too, but it is one person versus the entire world… If you need answers urgently, please check out my list of websites to get help with programming.

    EXAMPLE CODE DOWNLOAD

    Click here to download the source code, I have released it under the MIT license, so feel free to build on top of it or use it in your own project.

    CSS-ONLY ERROR NOTIFICATIONS

    Let us start with the raw basics by creating notification bars with just pure CSS and HTML.

    1) BASIC NOTIFICATION BAR

    1A) THE HTML

     
    Information message
    Successful message
    Warning message
    Error message

    That is actually all we need to create a custom error message, an HTML with the notification message inside. Take note of the bar and info | success | warn | error CSS classes – We will use these to build the notification bar.

    1B) THE CSS

    /* (A) THE BASE */ .bar < padding: 10px; margin: 10px; color: #333; background: #fafafa; border: 1px solid #ccc; >/* (B) THE VARIATIONS */ .info < color: #204a8e; background: #c9ddff; border: 1px solid #4c699b; >.success < color: #2b7515; background: #ecffd6; border: 1px solid #617c42; >.warn < color: #756e15; background: #fffbd1; border: 1px solid #87803e; >.error

    The CSS is straightforward as well –

    • .bar is literally the “basic notification bar” with padding, margin, and border.
    • .info | .success | .warn | .error sets various different colors to fit the “level of notification”.

    Feel free to changes these to fit your own website’s theme.

    1C) THE DEMO

    2) ADDING ICONS

    2A) THE HTML

    To add icons to the notification bar, we simply prepend the messages with &#XXXX . For those who do not know – That &#XXXX is a “native HTML symbol”, no need to load extra libraries. Do a search for “HTML symbols list” on the Internet for a whole list of it.

    P.S. Check out Font Awesome if you want more icon sets.

    2B) THE CSS

    Just a small addition to position the icon nicely.

    2C) THE DEMO

    JAVASCRIPT ERROR NOTIFICATIONS

    The above notification bars should work sufficiently well, but here are a few small improvements if you are willing to throw in some Javascript.

    3) ADDING CLOSE BUTTONS

    3A) THE HTML

    Not much of a difference here, except that we now add a that will act as the close button.

    3B) THE CSS

    /* (D) CLOSE BUTTON */ .bar < position: relative; >div.close

    There is not much added to the CSS as well. We simply position the close button to the right of the notification bar, and that’s about it.

    3C) THE DEMO

    Information message

    4) PACKAGED ERROR NOTIFICATIONS

    4A) THE HTML

          
    • target Target HTML container to generate the error message.
    • msg The error or notification message.
    • lvl Optional, error level.

    4B) THE JAVASCRIPT

    function ebar (instance) < // target : target html container // msg : notification message // lvl : (optional) 1-info, 2-success, 3-warn, 4-error // (A) CREATE NEW NOTIFICATION BAR let bar = document.createElement("div"); bar.classList.add("bar"); // (B) ADD CLOSE BUTTON let close = document.createElement("div"); close.innerHTML = "X"; close.classList.add("close"); close.onclick = () =>bar.remove(); bar.appendChild(close); // (C) SET "ERROR LEVEL" if (instance.lvl) < let icon = document.createElement("i"); icon.classList.add("ico"); switch (instance.lvl) < // (C1) INFO case 1: bar.classList.add("info"); icon.innerHTML = "ℹ"; break; // (C2) SUCCESS case 2: bar.classList.add("success"); icon.innerHTML = "☑"; break; // (C3) WARNING case 3: bar.classList.add("warn"); icon.innerHTML = "⚠"; break; // (C4) ERROR case 4: bar.classList.add("error"); icon.innerHTML = "☓"; break; >bar.appendChild(icon); > // (D) NOTIFICATION MESSAGE let msg = document.createElement("span"); msg.innerHTML = instance.msg; bar.appendChild(msg); // (E) ADD BAR TO CONTAINER instance.target.appendChild(bar); >

    This may look complicated, but this function essentially just creates all necessary notification bar HTML.

    4C) THE DEMO

    That’s all for the tutorial, and here is a small section on some extras and links that may be useful to you.

    THE END

    Thank you for reading, and we have come to the end. I hope that it has helped you to better understand, and if you want to share anything with this guide, please feel free to comment below. Good luck and happy coding!

    Leave a Comment Cancel Reply

    Breakthrough Javascript

    Take pictures with the webcam, voice commands, video calls, GPS, NFC. Yes, all possible with Javascript — Check out Breakthrough Javascript!

    Socials

    About Me

    W.S. Toh is a senior web developer and SEO practitioner with over 20 years of experience. Graduated from the University of London. When not secretly being an evil tech ninja, he enjoys photography and working on DIY projects.

    Code Boxx participates in the eBay Partner Network, an affiliate program designed for sites to earn commission fees by linking to ebay.com. We also participate in affiliate programs with Bluehost, ShareASale, Clickbank, and other sites. We are compensated for referring traffic.

    Источник

Оцените статью