Git Product home page Git Product logo

jquery-todo-list's Introduction

#To-Do App

In this assignment, you're going put together everything you've learned about listening to DOM events and manipulating the DOM with jQuery to build a dynamic Todo List application.

##Loading Dependencies

For this project you should be using jQuery. Either use the link from the Google Developer Libraries, your jQuery Sublime snippet, or the link below before the </body> tag.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>

##Minimum Requirements

  • A user should be able to add items to a 'todo' list from a form input using an input field and submit button.

  • The form should clear when the user submits a task and focus back on the todo item field.

  • On every item appended to the 'todo' list, have a way to delete the item. This could be in the form of a 'delete' link, a checkbox to mark it as active or inactive, or a plain button with an X on it.

  • Use event delegation so that clicking the x or other buttons removes the item. This will require setting up a click event on the main todoList container, and using .on("click", ".childItemSelector", function() {}) to watch for behavior on newly appended items.

##How to get started

  1. Start by constructing a basic index.html page as your starting point.

  2. Load the CDN for jQuery

  3. Setup your form to capture a task name. You can include a button to be part of the form to have many ways to submit.

  4. Use an <ul> or <ol> as a tag you can append into.

  5. Setup the on() action for the form to use that data to append to the todo list. Use a combination of var newThing = $("<li></li>") for creating elements and newThing.appendTo("#content") for adding to the page.

  6. Add x buttons and set event handlers on them such that click on them removes the appropriate todo item, with $(this).remove().

##Bonus

  • Style the todo list with your own beautiful sense of design.

##Super Bonus

##Super Super Bonus

Using the built in HTML5 feature of local storage. Store your todo item into local storage. When your page is refreshed it will load the old todo items from localstorage.

jquery-todo-list's People

Contributors

bhague1281 avatar cassicakes avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.