reading-notes

Reading Notes

View the Project on GitHub simon-panek/reading-notes

Code 201: Class 09 - Forms and Events


Read: HTML pp 144-175

Forms allow you to collection information from the user

Read: HTML pp 330-357

Bullet Point Styling

Table Properties

Form Styling

Cursor Styles

Read: JS pp 243-292

How events trigger JS code

Event Handlers

Traditional DOM Event Handler


function checkUsername() {
  //code to check the length of username
}
var el = document.getElementByID('username');
el.onblur = checkUsername;

Event Listener

Event Bubbling *event starts at the most specific node and flows outwards towards the least specific

Types of Events

User Interface Events

Focus and Blur Events


Return to reading-notes Deployed Site

Return to reading-notes Mark Down