Master DOM Manipulation | Part 2 | 5 PROJECTS | JavaScript DOM Manipulation

  Рет қаралды 17,587

CodeLab

CodeLab

Күн бұрын

Пікірлер: 48
@CodeLearningAcademy
@CodeLearningAcademy 2 жыл бұрын
I don't know why people underestimate the power of HTML and CSS with Javascript you can really create a project with great features. Nice project and nice animations,Keep it up
@MohitMummon
@MohitMummon 2 жыл бұрын
If anyone is having trouble with project 5 with the delete button breaking the app. Change the deleteBtn code to the following: deleteButton.addEventListener('click', function (e) { let target = e.target; if (target.matches('button')) { target.parentElement.remove(); } if (target.matches('i')) { target.parentElement.parentElement.remove(); } });
@NaveenKumar-or1jd
@NaveenKumar-or1jd Жыл бұрын
can you exaplain this a bit bruh?
@_.Mustafa._
@_.Mustafa._ Жыл бұрын
Thanks a lot Mohit brother.
@_.Mustafa._
@_.Mustafa._ Жыл бұрын
@@NaveenKumar-or1jd On the last exercise when you click the trash can icon within the button, it will fail by deleting everything including the parent. The icon is its own DOM element and is NOT the button element. (copied it from this comment section in case you missed it. )
@kit-kat837
@kit-kat837 Жыл бұрын
Thanks! That was super helpful.
@noumbissistael1470
@noumbissistael1470 Жыл бұрын
Thanks very much I noticed and was already asking in comments before I saw yours
@douglascounts4634
@douglascounts4634 2 жыл бұрын
On the last exercise when you click the trash can icon within the button, it will fail by deleting everything including the parent. The icon is its own DOM element and is NOT the button element. You can either fix this in code by checking that e.target.matches('button') before doing the delete or you can simply add a CSS rule that turns off pointer events for the icon like so: i.fa-trash-can { pointer-events: none; }
@_.Mustafa._
@_.Mustafa._ Жыл бұрын
Thanks bro, second one is also a better solution.
@cjaims1646
@cjaims1646 2 жыл бұрын
Love this...felt this video was meant for me....when I just started learning more about DOM manipulation
@CodeLab98
@CodeLab98 2 жыл бұрын
Thank you! I'm really glad it helped!
@kit-kat837
@kit-kat837 Жыл бұрын
I have watched several of your videos and they have all been fantastic. Thank you for all the work that you have done on them, and for sharing your work with all of us.
@betanpc8210
@betanpc8210 2 жыл бұрын
i've been waiting for the part 2!!! Your explanation for DOM helped me understand the DOM. And i actually got a remarkable grade in my college course by watching your videos. Many thanks!!!
@CodeLab98
@CodeLab98 2 жыл бұрын
That’s amazing to hear things like that!
@salihk5235
@salihk5235 2 жыл бұрын
Great one, was waiting for this part. Thank you :)
@Hamza__Sardar_Khan
@Hamza__Sardar_Khan Жыл бұрын
Hey there! Your projects are really helpful and we request you to continue making such projects for us so we can learn and prosper................
@vatansrivastava7279
@vatansrivastava7279 2 жыл бұрын
You are just Awesome....... very very helpful tutorial
@CodeLab98
@CodeLab98 2 жыл бұрын
Glad it was helpful!
@georgechatzis8194
@georgechatzis8194 2 жыл бұрын
Great job with DOM manipulation series! I believe your next videos should be on a bundler like webpack!
@cryptosfool
@cryptosfool Жыл бұрын
very explanation. very coding style and very focused. I followed and coded and I learned. Thank you.
@CodeLab98
@CodeLab98 Жыл бұрын
Great to hear!
@noumbissistael1470
@noumbissistael1470 Жыл бұрын
Thanks very much for the tutorial
@moncompte8407
@moncompte8407 2 жыл бұрын
Love it! Thanks mate, it helped me a lot
@CodeLab98
@CodeLab98 2 жыл бұрын
No problem 👍
@SoberMan2001
@SoberMan2001 2 жыл бұрын
Hi brother, please provide link to download images for project
@saroj3483
@saroj3483 2 жыл бұрын
Can you create a simple project or a Home page with only Dom By the way love this tutorial
@ruthkitasy2808
@ruthkitasy2808 2 жыл бұрын
This is very well explained thank you
@vatansrivastava7279
@vatansrivastava7279 2 жыл бұрын
bro please make a detailed video on asynchronous javascript
@web3engineer
@web3engineer 2 жыл бұрын
Excellent bro!!!! 💎
@CodeLab98
@CodeLab98 2 жыл бұрын
Thank you so much 😊
@mehedihasan-tm4cs
@mehedihasan-tm4cs Жыл бұрын
I faced a problem on project 5; after deleting all task i added cant add new task;
@PIYUSH-lz1zq
@PIYUSH-lz1zq 2 жыл бұрын
sir , can u make videos to make nested comment section and folder structure using JS
@JEDIXXXX1
@JEDIXXXX1 2 жыл бұрын
Thank you so much for this brillant tutorial. The link to the source code of P2 is not working. Can you provide it in some way? THANKS!!!
@CodeLab98
@CodeLab98 2 жыл бұрын
Updated
@olegkravchenko9655
@olegkravchenko9655 2 жыл бұрын
Great content, thanks! Is there a link to the images used in projects?
@adityatomar9548
@adityatomar9548 2 жыл бұрын
thank you for both the videos :)
@CodeLab98
@CodeLab98 2 жыл бұрын
Glad you like them!
@poetpenton4392
@poetpenton4392 2 жыл бұрын
Gtting this error @ 1:57 (main.js:6 Uncaught TypeError: Cannot read properties of undefined (reading 'toggle') at HTMLDivElement. (main.js:6:24))
@AdarshNarayanan
@AdarshNarayanan 2 жыл бұрын
I am getting the same error, were you able to solve this one?
@tech_hashes
@tech_hashes 2 жыл бұрын
I’ve been struggling with DOM for long, this tutorial bailed me out, great job. But could you please check the link to the source code, the GitHub link, it’s giving 404 Error, I’m stuck at the stop watch project and I don’t know what to do, so wanted to compare the source code to see what is really wrong, would be helpful if you get this fixed, thank you
@CodeLab98
@CodeLab98 2 жыл бұрын
All sorted, check again. :)
@mustasinbillah-u7d
@mustasinbillah-u7d 3 ай бұрын
thank you for this video. I love your js code writing style.
@CodeLab98
@CodeLab98 3 ай бұрын
Thanks for watching!
@Arjun-oq1jz
@Arjun-oq1jz Жыл бұрын
how to arrange the newly added task to the top of the list ( project-5)
@outtaname311
@outtaname311 2 жыл бұрын
Great video on explaining the concepts as well as making these projects, and I've been learning so much from your videos! There is one problem i have which is when adding content to webpage, the heading will start to be pushed further up (e.g project 3 & 5). Like in the last project, this means that I can't add enter any task since the input field is hidden. Can you suggest a solution for me?
@figmawithrazib
@figmawithrazib 2 жыл бұрын
your coding is soo great.... plz make video in react js
Being Competent With Coding Is More Fun
11:13
TheVimeagen
Рет қаралды 79 М.
Master DOM Manipulation | Part 1 | JavaScript DOM Manipulation
1:11:17
Остановили аттракцион из-за дочки!
00:42
Victoria Portfolio
Рет қаралды 3,6 МЛН
Officer Rabbit is so bad. He made Luffy deaf. #funny #supersiblings #comedy
00:18
Funny superhero siblings
Рет қаралды 6 МЛН
Day 16 Analyzing Laboratory Data With Excel & GraphPad Prism
32:58
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 479 М.
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 661 М.
Learn JavaScript DOM Traversal In 15 Minutes
14:44
Web Dev Simplified
Рет қаралды 225 М.
Will Deno 2.0 Replace Node.js?
12:35
Web Dev Simplified
Рет қаралды 53 М.
JavaScript Promises  -- Tutorial for Beginners
37:05
ColorCode
Рет қаралды 124 М.
Learn DOM Manipulation In 18 Minutes
18:37
Web Dev Simplified
Рет қаралды 1 МЛН
Dynamic numbering with CSS counters
12:04
Kevin Powell
Рет қаралды 12 М.
Pokemon: Black and White | Main Story Summarized
17:35
Swift KITA
Рет қаралды 82 М.
These CSS PRO Tips & Tricks Will Blow Your Mind!
8:48
Coding2GO
Рет қаралды 338 М.
Остановили аттракцион из-за дочки!
00:42
Victoria Portfolio
Рет қаралды 3,6 МЛН