#12 of 25 Beginner Projects - HTML, CSS, & JavaScript - To-do List ( Responsive Design )

  Рет қаралды 31,854

Web Dev Tutorials

Web Dev Tutorials

Күн бұрын

In project 12 of 25 beginner JavaScript projects we teach you how to create a to-do list application.
Try it before you build it ( Hosted with GitHub Pages):
miguelznunez.g...
GitHub Repository ( Don't forget to star !):
github.com/mig...
Sponsor me on GitHub!
github.com/spo...
Follow my blog:
/ miguelznunez
Email : mignunez@csumb.edu
Medium : / miguelznunez
Codepen : codepen.io/mig...
GitHub : github.com/mig...

Пікірлер: 40
@codefoxx
@codefoxx 3 жыл бұрын
Please add border: 1px solid lightgray to the .item class in CSS. I completely forgot, otherwise when you hover the to-do list items they will be a little "jumpy" !
@celinewu6060
@celinewu6060 Жыл бұрын
Thanks for the wonderful video, I learned a lot!
@mirzahussain3970
@mirzahussain3970 3 жыл бұрын
Nice 👍
@rosen.espinoza9477
@rosen.espinoza9477 3 жыл бұрын
Another great video!!
@reyhanahashimova1484
@reyhanahashimova1484 Жыл бұрын
tnx a lot i' so glad that u have made this video thank you so much 😘😘😘😘
@SignorPao
@SignorPao 2 жыл бұрын
thanks dude!
@kuz9476
@kuz9476 2 жыл бұрын
Thank you very much. I almost managed to do it like you did, but for some reason it turned out to be a problem to add two icons at once. But thanks to you I understand how it's done
@StarWarsKingdom
@StarWarsKingdom 2 жыл бұрын
Great video, but I seem to be having an issue with the add item function. When I go to add a task I am getting an error stating "addItem is not defined." Can anyone help? thanks
@joshuasimmons696
@joshuasimmons696 7 ай бұрын
following along, at 15:51, your calling .item in css, but theres no class of item in your html?!?!?!?
@sqrtye
@sqrtye 3 ай бұрын
why did we create the trashIcon constant?
@anaswolx6587
@anaswolx6587 3 жыл бұрын
thank you for video
@codefoxx
@codefoxx 3 жыл бұрын
No problem, thanks for watching!
@razu_
@razu_ 2 жыл бұрын
Hi! Thanks a lot for the video. Do you think its too hard to make the content persistent? (store the changes in a database, like for a particular user, using login)
@codefoxx
@codefoxx 2 жыл бұрын
It's not hard once you know how to do it. If all you know is html,css, and JavaScript, you will have to learn a framework like Spring Tools or Node.js ( which I recommend) and a database like mySQL or MongoDB. So, it will be hard at the beginning to learn those technologies and figure out how to put the whole thing together. Hope that answers your question
@leezee7980
@leezee7980 2 жыл бұрын
Hello sir, thanks for this wonderful tutorial But I can I make it save my records on my local storage?
@codefoxx
@codefoxx 2 жыл бұрын
Absolutely
@leezee7980
@leezee7980 2 жыл бұрын
Please how do I go about it I tried using local storage but didn’t work🙏🏼
@codefoxx
@codefoxx 2 жыл бұрын
@@leezee7980 Please watch project number 11 (the flashcards project). It's part of the same series. That project is very similar to this one and it uses local storage, so it shouldn't be difficult to take what you learn in that one and apply it to this one. Otherwise I would have to redo this video and although I wouldn't mind, I can't at the very moment
@muizolaore4630
@muizolaore4630 3 жыл бұрын
Pls what's the essence of creating the variable name trashIcon with Id trash. The code works just fine without such
@johnwood6900
@johnwood6900 2 жыл бұрын
Thanks for the video! how would you change the check mark back to lightgray if you accidentally clicked it?
@GuitarHope
@GuitarHope Жыл бұрын
Hi. I might be late but here's how I'd do it. I would create a class for it in CSS file, for example: .color-clicked {color:limegreen} and in the eventListener change checkIcon.style.color ="limegreen" to checkIcon.classList.toggle ('color-clicked'); This will allow you to change the color back once you click it again
@slammgucci
@slammgucci 2 жыл бұрын
how do i create drag drop functionality on the list to switch order of task???
@codefoxx
@codefoxx 2 жыл бұрын
There's a library called Sortable.js that makes that very easy to do. Look into it
@sasuke7990
@sasuke7990 Жыл бұрын
They show me error... And say they cannot read addEventlistener
@corycarreira9524
@corycarreira9524 Жыл бұрын
I know this video is old, but how are you seeing the page refresh as you add to your code?
@codefoxx
@codefoxx Жыл бұрын
Auto save is on
@rapidloop
@rapidloop 2 жыл бұрын
Great content⚡ I'm building projects for my channel too
@thearmor9231
@thearmor9231 3 жыл бұрын
Yey
@suvojitghosh2774
@suvojitghosh2774 2 жыл бұрын
Once you click on the check Icon it turns limegreen and doesn't do anything when you click it again. Is there any way to make it toggle?
@GuitarHope
@GuitarHope Жыл бұрын
Hello. I might be late but here's how I'd do it. I would create a class for it in the CSS file, for example: .color-clicked {color:limegreen;} and in the eventListener change checkIcon.style.color ="limegreen" to checkIcon.classList.toggle ('color-clicked'); This will allow you to change the color back once you click it again Hope this helps!
@a_yamkin
@a_yamkin 2 жыл бұрын
Good afternoon, after the introduction of more than 37 characters, item breaks
@gothfrog69
@gothfrog69 2 жыл бұрын
I did everything, but my .js file does not seem to work. The html/CSS looks correct. I am linking the .js file by placing in between the HTML header tags. Can someone help me with this?
@codefoxx
@codefoxx 2 жыл бұрын
Try placing the script.js file above your closing body tag
@gothfrog69
@gothfrog69 2 жыл бұрын
@@codefoxx I tried that too, but still not working. Is there anyway I can show you?
@codefoxx
@codefoxx 2 жыл бұрын
@@gothfrog69 also try it without type="text/javaScript"
@gothfrog69
@gothfrog69 2 жыл бұрын
@@codefoxx I figured it out. It was actually a typo I placed above. Sorry about that. Thank you for the content! :D
@rayannepp
@rayannepp 2 жыл бұрын
Font Awesome does not work, unfornately :(
@codefoxx
@codefoxx 2 жыл бұрын
Are you sure you linked everything correctly? Perhaps you are using a different version of font awesome that is not compatible with certain icons. Please re-check
@Aby_cat_RedBlitz
@Aby_cat_RedBlitz 2 жыл бұрын
@@codefoxx yes, i did everithing corectly and it doesn't work
@Aby_cat_RedBlitz
@Aby_cat_RedBlitz 2 жыл бұрын
dont work
#13 of 25 Beginner Projects -  HTML, CSS, & JavaScript - Sticky Notes
28:50
Worst flight ever
00:55
Adam W
Рет қаралды 30 МЛН
How do Cats Eat Watermelon? 🍉
00:21
One More
Рет қаралды 11 МЛН
Learn CSS Flexbox in 20 Minutes (Course)
20:37
Coding2GO
Рет қаралды 143 М.
Beginner Vanilla Javascript Project Tutorial
1:15:19
developedbyed
Рет қаралды 902 М.
To Do List | Javascript Beginner Project Tutorial
10:16
CodePhilip
Рет қаралды 230 М.
Build a To-Do List in 20 MINUTES with JavaScript
22:29
dcode
Рет қаралды 28 М.
Список дел | Todo list | vanilla javascript
20:37