Course
summary


    0 chapters available

Loading...

Make your website interactive with JavaScript

Difficulty: Beginner ● Progress: 0 / 0 modules completed

Controlling Form Elements

HTML elements that make up a form (text fields and checkboxes in particular) have additional attributes that allow you to access their value, and modify it if needed.

Let's take the following form:

<form>
    <div>
        <label>Email</label>
        <input type="text" id="email"/>
    </div>

You need a free account to read this module