reading-notes

201 Reading Notes: Class 09

Summary: This class reading assignment is about Forms and JS Events

HTML Forms

Why are forms so important in web development? Interacting with users/collecting data

When designing a form, what are some key things to keep in mind when it comes to user experience?

List 5 form elements and explain their importance.

[Source] https://developer.mozilla.org/en-US/docs/Learn/Forms [Source]https://developer.mozilla.org/en-US/docs/Learn/Forms/Your_first_form https://developer.mozilla.org/en-US/docs/Learn/Forms/How_to_structure_a_web_form

Learn JS: JavaScript — Dynamic client-side scripting

Introduction To Events.

How would you describe events to a non-technical friend? Events are fired to notify code of “interesting changes” that may affect code execution.

When using the addEventListener method, what 2 arguments will you need to provide?

Describe the event object. Why is the target within the event object useful?

What is the difference between event bubbling and event capturing?

https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events

Bookmark and Review

https://developer.mozilla.org/en-US/docs/Learn/Forms/HTML5_input_types https://developer.mozilla.org/en-US/docs/Web/Events

Things I want to know more about