From 0761c9bddd6edde11ec721a7b9b48232b5ad6057 Mon Sep 17 00:00:00 2001 From: Kristyn Bryan Date: Wed, 1 Jun 2016 16:08:11 -0400 Subject: [PATCH] Update README.md --- unit_01/w03d04/homework/to_do_starter/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit_01/w03d04/homework/to_do_starter/README.md b/unit_01/w03d04/homework/to_do_starter/README.md index 846b0cc..5a54e86 100644 --- a/unit_01/w03d04/homework/to_do_starter/README.md +++ b/unit_01/w03d04/homework/to_do_starter/README.md @@ -37,6 +37,8 @@ The commit message should read:
### Window Onload +Think about what the user will be doing when they are interacting with your to-do list. The user makes an action (adds text, presses delete, etc.), you run some code in order to process this action, the results of the action are rendered to the page, and then you wait until another action takes place. + Include any code that affects the DOM inside a window onload. jQuery has a shorthand for window onload: ``` @@ -49,8 +51,6 @@ $(function() { Try it out. -Remember the general flow of what is happening. The user makes an action, you run some code in order to process this action, the results of the action are rendered to the page, and then you wait until another action takes place. - **Commit 2**

The commit message should read: