bro i go through so many videos relevant to project but they won't explain the code simply the code was going but among them you'r the one only man explain the code with proper manner
LMAO, any time someone says "I usually don't comment", they are lying. It doesn't help your credibility or make your point any more valid by saying something like that.
Coding used to fill me full of dread, your lessons make me genuinely excited for it. Love the way and order in which you explain things. Absolute legend
I am learning js but the more I learn the more I lose confidense that I am not learning anything did you felt the same that time when you were learning
@@AAKARSHVERMA-bw4ic bhai sab yahi feel karte hai tension naa lo or chorna mat mujhe bhi zyada nii atta but ye project calculator,bg-changer, quote-app ye sab bana leta hun mai filhal mujhe bhi aysa he feel aata tha jab naya naya start kiya tha tho
heres some enhancment to code: 1- use .trim() to the input value to prevent user from adding spaces (it doesnt make sense to be task, also it destroys the shape) simply use let trimmedValue = input1.value.trim() and in the "addTask" function just change the " input1.value === "" " to the new trimmedValue and thats it also try t avoid alert since its annoying, make a popup in the screen bottom corner also you can save what the user typing in the input in session storage to be saved if he reloaded.
i am a biggner and i did followed this whole tutorial and completed till the end. its easy to follow but there are so many things which i didn't properly understood as someone new. tutorial could be more descriptive for biggners point of view like what are functions, variables etc.
Really commendable sir 😊. I found many errors in my way of doing this project ,then also I really wanted to created it . Then solved those errors and finally completed the project ✅🥳.
I like it that you are doing more JavaScript projects. But,It would be super great if you do JavaScript basic to advanced tutorial first and then these projects.
Such elegant way. My home cooked javascript was so long and ugly and still had so many bugs when trying on my own. This is such a great way to do it. Thanks
WOW. Thank you for such an easy-to-understand tutorial. I didn't know with such simple (not saying that it's easy) Javascript, you can create a to-do list!!
thank you so much for providing such a simple and valuable video. These tutorials are absolutely amazing not just for building projects but for actually understanding what you are doing. thank you a lot, bro
This video is super helpful and a great lesson to learn. Unfortunately, something won't allow my task to clear after pressing "Add". I don't know why, but everything else works.
In css use word wrap so that if the text of the task is too long it goes to the next line and increase the right padding so that the remove span doesn't get interrupted ul li{ word-wrap: break-word; padding: 12px 45px 12px 50px; }
Cool examples with step by step. But for me personally I would rather watch you figure it out and not just type the code that is on your left monitor. When you screw smth up and fix it, then I learn more that from this. But maybe majority of people like it this way. Keep it up!
if you guys want to add the JS feature where you can add a task by pressing the enter key inputBox.addEventListener("keyup", function(event) { if (event.keyCode === 13) { // 13 is the keycode for "Enter" event.preventDefault(); addTask(); }
This code doesn't work. Here is the code I use (add it to the end of the JavaScript file): inputBox.addEventListener("keypress", function (event) { if (event.key === "Enter") { event.preventDefault(); addTask(); } });
Thank you so much for this amazing tutorial. First I have tried to make it myself, but I have got stuck on the localstorage. But you explained this so easy.
I got it all sorted! Thank you so much! Very valuable lesson. I still have a long way to go since I cant do it all by myself. It's pretty much a copy-paste project so far, I hope one day I can do it by myself. Just out of curiosity, when making sure the data is saved. How and where exactly does that data go? It works just fine, but that data has to go somewhere, right? How does it know where to recall the data from and how and where can I find that data without opening the website?
Bro its so simple to find the local storage data that saved from the savaData() function. For that you have to inspect the page and go to the application section. In that section to the left side you will find local storage. You have to click the dropdown menu and find the value those value.
25:48 when he says "subscribe the channel" the subscribe button is circled in red. big bro is watching... btw thanks for the guide il made my first project with u:) super video!
Do the modern JavaScript by traversy media course especially the DOM section and the shopping list project .Then follow this project until the css part .Then do the JavaScript on your own without following the tutorial. I did it and i am glad i have not followed the tutorial because i learned alot 😅.
At 16:19 its better to create text node then append it as a child to the "li", in this way you can ensures that the input is treated as plain text, preventing potential security vulnerabilities (cross-site scripting or XSS attacks).
Good day. Thank you for the tutorial, but please for the part of e.target.tagname === LI. Why is the LI in uppercase? This was also done for the SPAN tag. Thanks.
Sir, very awesome project. Also the explanations helped me a lot because I could revise and learn a lot of JS methods through this single project. Thanks for providing quality content for free!!!
Brother, I have been watching your videos since few days mainly react or javascript videos and 30 days javascript projects.Thank you for creating such valuable content. Happy coding 🙂
👉 My JavaScript Advanced Course: greatstack.dev/go/javascript-course (75% Discount)
Sir you are the only reason i am not quitting coding . You make every project very easy . Please make some unique projects in the same way ❤
Sure. I will try my best. Thank You. 😊
I wasn't able to save can you help me with this
@@Ali.asjads control + s saves in vscode
@@GreatStackDev
Sir I am facing issue that document is not defined
Any solution please
bro i go through so many videos relevant to project but they won't explain the code simply the code was going but among them you'r the one only man explain the code with proper manner
I usually don’t comment, but videos like yours impress me. Very good job! Thank you for sharing your wisdom with us!!
I love you
@@yousefkhaled5758 I love you too 😘
LMAO, any time someone says "I usually don't comment", they are lying. It doesn't help your credibility or make your point any more valid by saying something like that.
@@atlantic_love It's not that deep.
@@user-kr4fz4fr8j My time is valuable. Your comment definitely is lacking substance.
please don't stop liking all his videos. you are an amazing teacher. Love from the United Kingdom.
Glad you liked it. Thanks for supporting our channel. 😊
WOW. This video achieved the same thing with way more simplicity than other tutorials. which is helpful for beginners.
Before watching this video i thought its hard to learn css html ans js together but after watching this i realise its very easy
Coding used to fill me full of dread, your lessons make me genuinely excited for it. Love the way and order in which you explain things. Absolute legend
All I can say is thank you..
Seeing real life applications of basic concepts with ease is amazing.. ❤
Glad you liked it!
the worst part in javascript is when you make a small mistake and the whole code doesn't work lol
bro I missed a comma🤣
xD@@coding688
@@coding688 you don't need a comma
bro css is even worst here atleast we can console log and in console error will show ,what part is running in css code me bug dhundo beth ke
But now you can use chat gpt to find errors
As a beginner in JavaScript DOM, it's really hard for me to understand that function, but you make it look easy.
This video saves my life🤩
I am learning js but the more I learn the more I lose confidense that I am not learning anything did you felt the same that time when you were learning
hey did you code it? i need source code , plz send ur github link if u did
@@AAKARSHVERMA-bw4ic bhai sab yahi feel karte hai tension naa lo or chorna mat mujhe bhi zyada nii atta but ye project calculator,bg-changer, quote-app ye sab bana leta hun mai filhal mujhe bhi aysa he feel aata tha jab naya naya start kiya tha tho
@@AAKARSHVERMA-bw4ic same here the further I go the less I think I can code anything on my own....
This is my 1st project of JavaScript..And this an awesome Experience....Thank You....
heres some enhancment to code:
1- use .trim() to the input value to prevent user from adding spaces (it doesnt make sense to be task, also it destroys the shape)
simply use
let trimmedValue = input1.value.trim()
and in the "addTask" function just change the " input1.value === "" " to the new trimmedValue and thats it
also try t avoid alert since its annoying, make a popup in the screen bottom corner
also you can save what the user typing in the input in session storage to be saved if he reloaded.
i am a biggner and i did followed this whole tutorial and completed till the end. its easy to follow but there are so many things which i didn't properly understood as someone new. tutorial could be more descriptive for biggners point of view like what are functions, variables etc.
"Excellent tutorial! Clear instructions for creating a functional to-do list app with HTML, CSS, and JavaScript."
Tqsm sir, u have given all the detailed explanation of the complete process of ToDo list.I have created an awsome list tqsm
Really commendable sir 😊.
I found many errors in my way of doing this project ,then also I really wanted to created it . Then solved those errors and finally completed the project ✅🥳.
I like it that you are doing more JavaScript projects. But,It would be super great if you do JavaScript basic to advanced tutorial first and then these projects.
@@CrazyAshu34 suggest some 🙂
@@VsEdits59only Dom manipulation is 🥷 Worthy 🦆
There are like thousands of videos like that on UA-cam.
this tutorial helped me so much may God bless you
tysm this is why i am not quitting coding today❤❤🔥🔥
I'm so glad! Thank You. Keep coding.😊
Following your tutorials is the next level of learning coding. I am following your tutorials while doing my freecodecamp lessons :)
very rare to see such explanation sir , thank you
Glad to hear that. Thanks for your comment. 😊
Such elegant way. My home cooked javascript was so long and ugly and still had so many bugs when trying on my own. This is such a great way to do it. Thanks
Thanks anupam, glad you liked it
Best series for Javascript and learning CSS.. Best tutorials
most fav. channel on youtube is greatstack
It's so simple bro and bow to the power of localStorage
WOW. Thank you for such an easy-to-understand tutorial. I didn't know with such simple (not saying that it's easy) Javascript, you can create a to-do list!!
thank you so much for providing such a simple and valuable video. These tutorials are absolutely amazing not just for building projects but for actually understanding what you are doing. thank you a lot, bro
Excellent tutorial. Thanks very much, greetings from Brasil
THANK YOU! I will be adding my own features and functions to this basic to do list!
Sir I have watched many videos to make my To-Do list but I was confuse while watching them but sir your video is very winderful
Successfully I created my first project using this tutorial..🤗♥️thank you so much
This video is super helpful and a great lesson to learn. Unfortunately, something won't allow my task to clear after pressing "Add". I don't know why, but everything else works.
Thanks Sir for the "30 days of Javascript", i have recently finished a bootcamp of 6 months.
Please can you send the link where you did "30 days of JavaScript"?
It would really help
In css use word wrap so that if the text of the task is too long it goes to the next line and increase the right padding so that the remove span doesn't get interrupted
ul li{
word-wrap: break-word;
padding: 12px 45px 12px 50px;
}
Wow,I really gained more knowledge from thus video. You are the best tutor in java scripts..you explained it as simple as Abc💀
Cool examples with step by step. But for me personally I would rather watch you figure it out and not just type the code that is on your left monitor. When you screw smth up and fix it, then I learn more that from this. But maybe majority of people like it this way. Keep it up!
same pinch
Thank you very much I am currently learning function in js after I complete the course, I will use this as my project thank you 🎉🎉🎉❤
Thank you for creating this tutorial. I completed the project and learned a lot.
if you guys want to add the JS feature where you can add a task by pressing the enter key
inputBox.addEventListener("keyup", function(event) {
if (event.keyCode === 13) { // 13 is the keycode for "Enter"
event.preventDefault();
addTask();
}
Wow~~This is exactly what I am looking for. Thank you so much for sharing!
@@j_u_d_y3041 let me know how your website looks! Very curious to see 👀
Where do I place it ?
where should i place this in the js code?
This code doesn't work. Here is the code I use (add it to the end of the JavaScript file):
inputBox.addEventListener("keypress", function (event) {
if (event.key === "Enter") {
event.preventDefault();
addTask();
}
});
Thank you so much sir, iam learning from india so its very easy to learning and more codes are awesome❤🎉
Your code explanation is very easy to understand. thank you for giving us this tutorial
Thank you! 😊 Keep doing more projects like this.
Thanks for your contribution Sir, I've improved massively in coding because of you
The easiest one to follow that worked 100% from the start to the end....Amazing tutorial :)
I really enjoyed learning this project. It was easy to follow along with.
Great Job ,This is my first js project , then i am very happy because i complete project......
very easily explained , Thank you so much
Thank you so much for this amazing tutorial. First I have tried to make it myself, but I have got stuck on the localstorage. But you explained this so easy.
Wow amazing. Thank u so much. No words for u ❤❤❤
Great tutorial, you’re explaining it perfectly
Thank you so much.
Great video.. really easy to understand.
You are a great teacher sir ...❤
After watching your make a e commercial website
THANK You 💓💓
sir you have found a new loyal subscriber today. loved it sir........make more content like this
I got it all sorted! Thank you so much! Very valuable lesson.
I still have a long way to go since I cant do it all by myself. It's pretty much a copy-paste project so far, I hope one day I can do it by myself.
Just out of curiosity, when making sure the data is saved. How and where exactly does that data go? It works just fine, but that data has to go somewhere, right? How does it know where to recall the data from and how and where can I find that data without opening the website?
Bro its so simple to find the local storage data that saved from the savaData() function. For that you have to inspect the page and go to the application section. In that section to the left side you will find local storage. You have to click the dropdown menu and find the value those value.
so easy your teaching method is very nyc
sir its very helpful by watching your video and coding will give me a more experience
Thank you for such a clear explanation!
Am now one step closer to getting my front end job
25:48 when he says "subscribe the channel" the subscribe button is circled in red. big bro is watching... btw thanks for the guide il made my first project with u:) super video!
Do the modern JavaScript by traversy media course especially the DOM section and the shopping list project .Then follow this project until the css part .Then do the JavaScript on your own without following the tutorial. I did it and i am glad i have not followed the tutorial because i learned alot 😅.
Thanks and we needs more html css JavaScript projects like this greats
Your videos are very instructive. I have been learning a lot, thank you so much! 2 projects down, 28 to go!
ur the best teacher man.
At 16:19 its better to create text node then append it as a child to the "li", in this way you can ensures that the input is treated as plain text, preventing potential security vulnerabilities (cross-site scripting or XSS attacks).
THANKSS BROTHERR!! YOUU SAVEE MY LIFEEE😁
It's an amazing tutorial. I just built my very first project To-Do-List App. Thank you so much for the tutorial.😁
"Great! Thank you very much."
Good day. Thank you for the tutorial, but please for the part of e.target.tagname === LI. Why is the LI in uppercase? This was also done for the SPAN tag. Thanks.
need answer for this too, and also why false at the end as an argument??
if you still need this. The tagName property returns the tag name in UPPERCASE so we need to check the name with the tag written in uppercase
Thank you easy tutorials. You're doing a great job by explaining it step by step
Sir, very awesome project. Also the explanations helped me a lot because I could revise and learn a lot of JS methods through this single project. Thanks for providing quality content for free!!!
hey bro can u send the code for this, if u did it and uploaded to github
Thanks for video a lot. My question is add some short video that shows how to deploy like in git hub instead of using local storage.
Love the project it was really amazing for the beginner
Glad you liked it! Thank you so much.
This kind of work is much appreciated sir.
Very helpful video THANKYOU BHAI
Brother, I have been watching your videos since few days mainly react or javascript videos and 30 days javascript projects.Thank you for creating such valuable content. Happy coding 🙂
Thankyou, you are explaining very well
even though the project seems to be and actually is very easy there are many extremly useful solution included, Thank You
honestly this is the best explaination one could give. dude emm literally proud of you. keep it up!!
This course is great!
Thank you.
In addition to the ADD button if we want to add any task by just pressing enter on our Laptop/PC what modification should we do in the code??
Very amazing and easy lecture, Thanks for this content
Thank you Professor GreatStack
Thank you so much for your effort
You are doing a great job by explaining it step by step
Sir you are explaining very great.
Understanding each and every point clearly
This was great, i made some changes using font awesome icons instead of the images.
Glad to hear that. Thank you. 😊
Loved it, very simple To-do App. Thanks a lot.
thank you for your service, for the novice
Shoe de bola meu amigo.. Muito Obrigado pela contribuição. aprendi muito com vc.
thanks for teaching me
Thank you very much sir you deserve more🤩❤
Thanks for this grwat work, you are making life of many by giving free education.
Big thanks 🙏
Thanks a lot from Indonesia
step by step very simple to understand for to do list project.
Very nice and clear explanation with simple and clean code.. very helpful for beginners Thank you so much for such a wonderful tutorial..
Thank Youu So much. I learned a lot from this video. Subscribed, keep making content.
best video for a beginner
You made it very easy! Thanks man!
Such a wonderful tutorial 👏🏾👏🏾 Thank you
Thank you so much 😊
Keep going 💪
This video was very helpful❤❤❤
You're welcome. Thank You. 😊