Clone of todomvc-jquery@7d5d1260
Fetch dependencies:
npm install
npm run hs # http://localhost:8080
const todos = [
{
id: "19f933ad-2872-48a9-83bc-99c96ec75ca1",
title: "learn JS",
completed: false
},
{
id: "47db8ec5-14a9-45ed-81c9-665d35cffbaf",
title: "learn redux",
completed: false
},
{
id: "b4af5fdc-84d5-4f3d-9cdd-48a971538c73",
title: "buy beer",
completed: true
},
{
id: "b0341f90-18d5-4ca3-a3ac-4292ff034bca",
title: "profit :]",
completed: false
}
]
localStorage.setItem('todos-jquery', JSON.stringify(todos));
original readme below...
jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.
The jQuery website is a great resource for getting started.
Here are some links you may find helpful:
Articles and guides from the community:
Get help from other jQuery users:
If you have other helpful links to share, or find any of the links above no longer work, please let us know.