Editing Existing Entries
Learn how to edit existing entries by implementing autosave.
We'll cover the following...
In this lesson, we're going to take a look at how we can edit each field of a single student. For this, we're going to use a generic function that will work for all fields, and it'll function as an autosave. Any field that is updated will be immediately saved. This is because we're using an on:keyup
event listener that triggers an update on each ...