TODO LIST USING JAVASCRIPT

Поделиться
HTML-код
  • Опубликовано: 15 июн 2022
  • Build todo list or app using javascript, in this project tutorial we will learn how to build a todo list, using javascript html css.
    source code link
    drive.google.com/folderview?i...

Комментарии • 21

  • @somanathkakade6908
    @somanathkakade6908 8 месяцев назад

    Excellent teacher, Amazing explanation.

  • @uzbekdev4980
    @uzbekdev4980 Год назад +1

    Hello buddy Good job. Really impressive

  • @sahi2324
    @sahi2324 Год назад +1

    Super 👏.. Amazing explanation for the beginner.. 🔥😍

  • @tekskilldev8310
    @tekskilldev8310 Год назад +1

    You are an excellent teacher. You have made todo CRUD app logically and efficiently. Great Job.

  • @data9224
    @data9224 Год назад

    IT WAS AMAZING! THANK YOU VERY MUCH! YOU HELPS A LOT

  • @josephmusinguzi2360
    @josephmusinguzi2360 Год назад

    Thanks for this good job, but how can i integrate local storage to this

  • @sreejapm2709
    @sreejapm2709 Год назад

    Thank u so much Sir.

  • @Misica11000
    @Misica11000 9 месяцев назад

    Can you do update,but that data stayed down?

  • @uzbekdev4980
    @uzbekdev4980 Год назад +1

    Just a little suggestion. It would be awesome if you improve video sound quality it feels like there is echo coming back. Other than that everything is perfect

    • @codelab7185
      @codelab7185  Год назад +3

      Hi thank you for your suggestion about audio echo, i have not noticed that before, i will correct it from my next video I will watch your video, good luck with your channel

  • @lordring8908
    @lordring8908 Год назад

    Thank you for the detailed instructions. I want when I press the enter button, new todo item will be added.
    please guide how to do it

    • @codelab7185
      @codelab7185  Год назад +1

      Thank you, to add enter key write this
      textInputField.addEventListener("keypress",(e)=>{
      If(e.key ==="Enter") {
      Here copy paste all code inside addButton.addEventListenr()
      }
      })

  • @uzbekdev4980
    @uzbekdev4980 Год назад +1

    I also built To Do list and posted video for that. If you are interested you can go and check out how I implemented it

  • @courses4life934
    @courses4life934 Год назад

    Can you please upload code to github and share it in the description

    • @codelab7185
      @codelab7185  Год назад

      I added the source code link now, please check

    • @courses4life934
      @courses4life934 Год назад

      @@codelab7185 Thank you. One more suggestion to get view is that you try doing projects that are trending for interview and js polyfills based questions. These will get you more views in my opinion.

  • @BMikel
    @BMikel Год назад

    Wrong approach. You need to manipulate items via unique ID. Anyway, for educational approach could be used to learn JS basics.