⚠️ This lesson is retired and might contain outdated information.

Handle form validation when a value changes in Svelte

Andrew Smith
InstructorAndrew Smith
Share this video with your friends

Social Share Links

Send Tweet

You will look at validating a form field when a value has changed and focus has been moved away with the handleChange function from the svelte-forms-lib.

Andrew Smith: [0:01] Let's add handleChange to our destructured properties from createForm. Let's add the handleChange function to our username input field with an on directive followed by the changeEvent = handleChange.

[0:13] We can repeat this process for password field, and then test it out in the browser. If we enter a space in our username field and tab to the next field, we now see an error message.