Create a To-Do List App using JavaScript | JavaScript Projects for Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ม.ค. 2025

ความคิดเห็น • 30

  • @owaishanif7999
    @owaishanif7999 2 ปีที่แล้ว +10

    nice, love you from Pakistan.

  • @swapnilchilwant6867
    @swapnilchilwant6867 11 หลายเดือนก่อน +2

    Thank you sir👍

  • @keshaii_
    @keshaii_ ปีที่แล้ว +2

    Bhagirath sir,
    Love from Manav aashram Colony ❤️
    I'm your big big big fan 🙏🏼

  • @adeebkhan8531
    @adeebkhan8531 ปีที่แล้ว +11

    First of all thank you so much for this amazing project. However, there are couple of bugs that need to be fixed.
    (1.) If you press "Enter" without writing anything in the input box then a half sized empty todo box appears which shouldn't.
    (2.) Even if you fix this bug there's still more to do as when you press spacebar (once or more than once) and press "Enter" then also that same half sized empty todo box appears.
    These are the changes that must be done in the function code:
    item.addEventListener(
    "keyup",
    function (event) {
    if (event.key == "Enter") {
    let cleanlist = this.value.trim();
    if (cleanlist.length > 0) {
    addToDo(cleanlist)
    this.value = "";
    } else {
    return;
    }
    }
    }
    )

    • @nanmakrishnan
      @nanmakrishnan ปีที่แล้ว

      Even this may help!!!
      item.addEventListener(
      "keyup",
      function(event) {
      if (event.key === "Enter") {
      const inputValue = this.value.trim(); // Remove leading and trailing spaces
      if (inputValue !== "") {
      addToDo(inputValue);
      this.value = "";
      }
      }
      }
      )

    • @MohammadTalha-p5z
      @MohammadTalha-p5z 3 หลายเดือนก่อน

      Outstanding

  • @WorksOfVarun
    @WorksOfVarun 2 ปีที่แล้ว +2

    Didn't think I'd watch a 20min video, went by so fast!
    Nice job! 🔥

  • @archanasahu7103
    @archanasahu7103 8 หลายเดือนก่อน

    Thank you sir very nice and net and clear explaination😊

  • @Spider-Man_67
    @Spider-Man_67 2 ปีที่แล้ว +3

    Superb Project sir, please bring more advanced JS projects including Twilio,much needed.

  • @boomaboom6458
    @boomaboom6458 ปีที่แล้ว

    PLEASE CORRECT ME IF I AM WRONG....
    This is just my point of view that after attending this lecture that i have learnt:
    if we want to CRUD operation on client side :
    --------Topics to be covered-------
    DOM.
    Event listner.
    which further if we move to react the UI update is all taken control by react HOOKS..

  • @hassamakbar1
    @hassamakbar1 ปีที่แล้ว

    Great , Thanks

  • @mritunjaykumar9144
    @mritunjaykumar9144 6 หลายเดือนก่อน

    JS 10:22

  • @MuhammadUsman-ok5vs
    @MuhammadUsman-ok5vs ปีที่แล้ว +1

    nice

  • @coding99shanawaj
    @coding99shanawaj 3 หลายเดือนก่อน

    Item jayda houa toh overlap kar raha hai

  • @travellinggoose
    @travellinggoose ปีที่แล้ว +1

    awesome

  • @AdarshMitr
    @AdarshMitr ปีที่แล้ว

    style is not working on 'delete icon'

  • @opticmind
    @opticmind ปีที่แล้ว

    Sir can i take web development course frim your web

  • @prerit791
    @prerit791 2 ปีที่แล้ว +1

    Python me vi todo list banana sikao na vai😁

  • @bcastudy01
    @bcastudy01 ปีที่แล้ว

    How to add a remainder in this code Can anyone help me to add a remainder to the Task in this code

  • @utkarsh3vedi
    @utkarsh3vedi ปีที่แล้ว

    sir line through hoo hi nahi raha please reply

  • @JitendraSharma-vr5bo
    @JitendraSharma-vr5bo ปีที่แล้ว +1

    not working i

  • @ummesalma859.
    @ummesalma859. 5 หลายเดือนก่อน

    My code is note working

  • @Dinkar_Thakur
    @Dinkar_Thakur ปีที่แล้ว

    Humne HTML me i-tag ke andar fas fa-time kyu diya samajh nahi aaya koi samajha skta hai

  • @richpubg983
    @richpubg983 2 ปีที่แล้ว

    Please bro please how to make Pubg hack 🧐🧐

    • @futurexa
      @futurexa 2 ปีที่แล้ว

      satire?

    • @vision_lc
      @vision_lc ปีที่แล้ว

      🤣🤣

  • @MohsinKhan-wv3ep
    @MohsinKhan-wv3ep ปีที่แล้ว +1

    Sir agar input khaali hai phir bhi li add hora wo bhi khaali
    Is problem ko bataaiye na

    • @IfhamTechCoverage
      @IfhamTechCoverage 9 หลายเดือนก่อน +1

      use if else statement where checking that the enter key is pressed and add another condition ( first condition && items.value !== "")

    • @MohammadTalha-p5z
      @MohammadTalha-p5z 3 หลายเดือนก่อน

      @@IfhamTechCoverage Helpfu! But If we press just space bar it is again giving us half empty box.