Skip to content

Instantly share code, notes, and snippets.

@r1ckhenry
Created July 18, 2016 14:25
Show Gist options
  • Save r1ckhenry/fc2f44b6b9d6b4e22797f44874dedd1a to your computer and use it in GitHub Desktop.
Save r1ckhenry/fc2f44b6b9d6b4e22797f44874dedd1a to your computer and use it in GitHub Desktop.
Quote Lab

#DOM manipulation, callback lab.

##Quotes App

The quotes are all hardcoded in our web page. Let's start moving towards having a dynamic web application and set the existing quotes programatically via JavaScript.

  • Create an array of the existing quotes, each quote having text and author
  • Add the quotes to the page dynamically with JavaScript

Further:

  • Extend our quote application so that a user can add quotes. (Don't worry about these saving between refreshing page, we'll do this tomorrow)

Even Further:

  • Add functionality to delete quotes
  • Style page

Even Even Further:

  • While typing show the quote being created in real time.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment