JavaScript DOM Crash Course - Part 1

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 780

  • @frogsama666
    @frogsama666 2 роки тому +56

    For anyone who needs to the HTML and CSS file. I'm not using bootstrap.
    Item Lister


    Add Items


    Items
    item 1
    item 2
    item 3
    item 4

    /*--- CSS ---*/
    /*-------- GENERAL --------*/
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    font-family: sans-serif;
    }
    .container {
    padding: 0px 25px;
    }
    /*-------- HEADER --------*/
    #main-header {
    background-color: rgb(0, 126, 0);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 20px;
    }
    #header-title {
    color: white;
    font-size: 40px;
    }
    /*-------- MAIN CONTENT --------*/
    #main {
    border: 1px solid rgb(180, 180, 180);
    padding: 20px;
    margin-top: 20px;
    }
    .title {
    margin: 20px 0px;
    font-size: 30px;
    }
    .title:first-child {
    margin-top: 0px;
    }
    input {
    height: 30px;
    border: 1px solid rgb(180, 180, 180);
    }
    .btn {
    background-color: rgb(39, 39, 39);
    color: white;
    width: 100px;
    border: 0px;
    cursor: pointer;
    }
    .list-group-item {
    border-bottom: 1px solid rgb(180, 180, 180);
    list-style-type: none;
    margin-bottom: 20px;
    }
    .list-group-item:last-child {
    margin-bottom: 10px;
    }

  • @chevalier5691
    @chevalier5691 4 роки тому +152

    Kind of insane to think that Brad single-handedly pumped thousands of future developers and engineers into the world. And it all start with small series like this. Couldn't thank you enough, Brad.

    • @daiaasojo7387
      @daiaasojo7387 Рік тому

      You're right

    • @codewithkg
      @codewithkg 5 місяців тому

      I am one of them , I used to download Brads videos where ever I get free WIFI and practice them at home . Today I am Tech Lead , I have my youtube channel like giving back to the community . Thank you Brad

  • @nabeeljaved1742
    @nabeeljaved1742 4 роки тому +94

    i got job because of you. i have watched jquery, javascript and dom, react , ,vue. you have professional content huge respect man !

    • @qureshiowais6951
      @qureshiowais6951 3 роки тому +1

      got freeelancing work .

    • @gatosandrea
      @gatosandrea 3 роки тому

      Hello, what do you recommend to learn after DOM?

    • @dragosgheceanu9847
      @dragosgheceanu9847 3 роки тому +5

      @@gatosandrea after DOM you are ready to work, just have a portfolio with projects
      if to learn - then it is surely React, Vue or Angular and also Git and Npm

    • @gatosandrea
      @gatosandrea 3 роки тому +2

      @@dragosgheceanu9847 Ooh, okay. I think I'd do some projects because I tend to forget some syntax and how things work. If to learn, which one you'd recommend me to learn first? And anyway, thank u so much for your answer :)

    • @garveziukas
      @garveziukas 3 роки тому +2

      @@gatosandrea Look for which one is the most popular in your area or what companies you want to work for use. Generally speaking you cannot go wrong with React since it's popular everywhere and most employers ask you to know one of those three anyway, no need to learn all of them, focus on truly understanding how things work and how to write code that does what you want it to do instead of going on a frameworks/tools/libraries frenzy many beginners fall for. It's also really important to feel comfortable with vanilla JS, too.

  • @arshadgamer8621
    @arshadgamer8621 4 роки тому +202

    DOM is most important topic for web development, but it is often missed by many youtubers...
    You created 4 videos on DOM, Thanks a lot...

    • @sumyataung1249
      @sumyataung1249 2 роки тому +1

      I can only find 2 videos - would u mind telling me where is parts 3 and 4?

    • @edisononayifeke8279
      @edisononayifeke8279 2 роки тому +1

      This is a link to the playlist of the rest videos

    • @edisononayifeke8279
      @edisononayifeke8279 2 роки тому +3

      Here's the link forgot to include it in the previous comment m.ua-cam.com/play/PLWrdF35wo-ISLXL9R7khxtpZ17jCsmeiv.html

    • @sumyataung1249
      @sumyataung1249 2 роки тому

      @@edisononayifeke8279 thank you very much ! it means a lot 🖤

  • @eS_Zett
    @eS_Zett 7 років тому +787

    02:45 DOM Introduction
    04:52 HTML Structure
    07:07 Examine the Document Object (console.dir() & console.log())
    15:43 Selectors
    15:54 getElementById()
    22:29 getElementsByClassName()
    27:11 getElementsByTagName()
    29:14 querySelector()
    34:48 querySelectorAll()

  • @DivineJesusPrayers
    @DivineJesusPrayers 7 років тому +648

    Hi Brad, for all the work and content you put out in this channel, you have my undying respect and gratitude. It takes a heart full of compassion, dedication and commitment to do what you do consistently. May you NEVER lack for energy, wisdom and resources to continue this great work. Thanks a million times over!!!

    • @kandysman86
      @kandysman86 5 років тому +18

      @@shadydelivery me too. I couldnt afford bootcamp, but this man single handedly made coding "click" for me. So much so, that 6 months of learning with random tutorials was surpassed by watching this channel for 1 month. Ive got my first landing page to build this week (first paying project period). Im so exited. I was ovwrwhelmed by all the stuff i needed to learn, but once it clicked, the thought of learning all the new tools makes me happy, not scared anymore :).

    • @MMABeijing
      @MMABeijing 4 роки тому +7

      may i ask where u r from? u expressed your comment so perfectly, i wish i had ur emotionnal intelligence

    • @guslima3681
      @guslima3681 3 роки тому

      Copy and Paste and Reply that.

    • @thesphider8298
      @thesphider8298 2 роки тому

      @@MMABeijing He's NIGERIAN! I knew that, the moment I red the comment😁

  • @teiki7756
    @teiki7756 3 роки тому +13

    Even in August 2021 this is the best DOM Tutorial on the internet. Thank you Brad for all the great explanations and humble attitude.

    • @orgesymeri1235
      @orgesymeri1235 3 роки тому

      yeah im learning this too i just completed the JS basics in this playlist... Gonna watch these all i hope it helps me out

    • @robertamarin7982
      @robertamarin7982 2 роки тому

      jqpwbpnEmsnnen!!bnsb

  • @millertime6
    @millertime6 5 років тому +6

    Dude, this was the best explanation I've seen of this concept. Most of the tutorials I've seen run through the material so fast they forget to lay out the logic, then they give you a project to do before you even learn it! It sucks because I then have to go somewhere else to fill in the gaps.

  • @Theorchero
    @Theorchero Рік тому +3

    Extremely helpful video series. Where all my TOP homies at?

  • @dogstar2020
    @dogstar2020 6 років тому +40

    I've never seen a review of the DOM in plain JS like this before! This is GREAT.

  • @oluwaseunajibowo7422
    @oluwaseunajibowo7422 2 роки тому +1

    I can't lie, many things seems strange untill I watch and practicalised this tutorial. this video is everything I need right now....Thank you for this master piece..👏

  • @josuegarduno7154
    @josuegarduno7154 6 років тому +2

    Took me around ninety minutes to get through the entire video because I was taking notes and coding along. You have such a great way to explain concepts that I couldn't understand yet.

  • @inception252
    @inception252 3 роки тому

    i like man teacher
    seems pretty legit source and completely not time wasting

  • @10Zenil
    @10Zenil 5 років тому

    i have been trying to learn about DOM the whole day by finding resources on the internet, but cant understand it fully. This video is a gem for real, cleared all my doubts i had about DOM

  • @maximocaceres4685
    @maximocaceres4685 Рік тому +2

    Here from TOD. Found this first episode very informative. Looking forward for the next episodes! Thank you.

  • @justsurfrax
    @justsurfrax 7 років тому +7

    Yet another amazing video , so useful, 90% of what I know on how to code from you, before I even knew it was you I bought several eudonix courses and than I arrived to your youtube channel (or I believed I was in both at the same time but never paid attention that it was exact the same voice) , you are a great teacher and post every day.. I opened many apps in the last months and this would have never happened if it wasn't because of your teachings.

    • @TraversyMedia
      @TraversyMedia  7 років тому +3

      Adam H. Thats so awesome. Very inspiring 😊

  • @mushrafaltaf
    @mushrafaltaf 4 роки тому

    Holy shit this guy is a real master. I learnt so fucking much in this 100 mins and there are 46 more videos in this playlist alone!
    Who needs university? There are MIT and Harvard CS lectures online for free if you require advanced CS and math topics.

  • @genjioto
    @genjioto 3 роки тому +1

    Probably the most helpful course by far, I use dom manipulation quite a bit in my day to day.

  • @elementtestdianhua1292
    @elementtestdianhua1292 2 роки тому

    I'm writing this comment to help anyone else that comes upon this video with the same issue as me. I would console log and have an output that would change with page refresh and did not even resemble what was being shown in the video. the solution is go to the settings in the console of your web browser and make sure you have the option "preserve log upon navigation" is turned ON. anyways, wonderful video. Just trying to save someone some time if they encounter this issue. Cheers~

  • @zachfotis
    @zachfotis 3 роки тому +2

    The most comprehensive tutorial on DOM manipulation out there. Thank you !

  • @MuhammadZubair-xw2pf
    @MuhammadZubair-xw2pf 2 роки тому +1

    You are really genius. I was really confused actually about DOM. What is it and where can we use it?. Man you explained it very well and now i understood all of that. Lots of respect for u.

  • @Chicgeek88
    @Chicgeek88 7 років тому +15

    This was right on time! I started learning about the DOM today!!!

  • @TheEmperorXavier
    @TheEmperorXavier 3 роки тому +1

    This is amazing, I'm currently leaning the JS and started learning DOM and this is really helpful. Thank you

    • @succeeder3044
      @succeeder3044 2 роки тому +1

      hello how is your learning, i am almost 3 weeks into this.

    • @TheEmperorXavier
      @TheEmperorXavier 2 роки тому +1

      @@succeeder3044 it's going great, I use multiple sources, but mostly mdn

    • @succeeder3044
      @succeeder3044 2 роки тому +1

      @@TheEmperorXavier thanks dear, i am grateful for your response

  • @tehambuligirl
    @tehambuligirl 2 роки тому

    This is the BEST way I've ever seen this explained! Other ways make it too complex! THANKS!

  • @bryansharpley4190
    @bryansharpley4190 7 років тому +2

    only part one of four and this is already by a long shot THE BEST DOM explanation ever! Thanks again for amazing tutorials!

  • @samialvi4226
    @samialvi4226 Рік тому +1

    There's always something new to learn from Brad. You have my undying gratitude and
    respect~!

  • @widespectrumcreators4691
    @widespectrumcreators4691 2 роки тому

    BEST TUTORIAL FOR JAVASCRIPT EVER SEEN! 🤩🤩🤩🥰👍🏼🙂👍🏼👍🏼👍🏼👍🏼👍🏼👍🏼👍🏼Master for teaching!!

  • @markettext
    @markettext 4 роки тому

    I watched this video and half way through I learned that I had complicated a relatively simple thing...thanks for clearing it up.

  • @lavkushsingh3618
    @lavkushsingh3618 4 роки тому

    because of only your teaching style i have disabled adblocker on your channel....... best course on youtube and also best channel on youtube.hope you will reach 1 million suscriber very soon.

  • @lextual
    @lextual 6 років тому

    If I had seen this two months ago, I might still have a job!
    This is one of the best tutorials I have seen on javascript taking me right back to the basics that I really could have used a long time ago. In the future, I will definitely have a lot better progress on my endeavors...

    • @peace8859
      @peace8859 5 років тому

      lextual if you don't mind me asking, what did your job require from JavaScript?

  • @ronyan
    @ronyan 6 років тому +2

    In case anyone wonders, you don't need querySelectorAll for odd/even. Just use an if statement with modulus like x % 2 == 0. This can be handy for dynamically generating tables also.

  • @TheMdtariq
    @TheMdtariq 7 років тому +2

    This was really useful more than a full length tutorial imo. i tried understanding DOM and left it in middle, now this time i am determined to learn by your tutorial.
    Thank you soo much , keep uploading awesome stuff like these. i am glad i stumbled upon your channel

  • @widespectrumcreators4691
    @widespectrumcreators4691 2 роки тому

    BEST TUTORIAL FOR JAVASCRIPT EVER SEEN! 🤩🤩🙂👍🏼👍🏼Master for teaching!!

  • @slimlaouini7997
    @slimlaouini7997 2 роки тому

    Hy Brad,
    I wanted to thank for all the crash courses you make.
    I'm from Tunisia and I live in France and I'm going to integrate the web developpment courses in less than 1 month and all your crash courses help me alot.
    Thank you very much.

  • @ai.201
    @ai.201 4 роки тому

    Always scared of learning java script, you made it so easy man.

  • @mbounatansijones432
    @mbounatansijones432 4 роки тому +2

    Hello Brad! First of i just wanna say am a big fan of your work. I recently got into web development, and am currently on javascript thanks to you.

  • @kunalpandey7189
    @kunalpandey7189 5 років тому +2

    thank you very much for these free tutorials.....you are doing a lot for learners like us.Thank you again

  • @parakidd
    @parakidd 6 років тому

    I spent a good minute looking around for a video to explain how to work with the DOM. This is the only one I found lol. Very informative and actually helped me understand JS better as well also. Thank you.

  • @gazanfarhasanzade278
    @gazanfarhasanzade278 6 років тому +1

    1) querySelector returns the first single element in the document that matches the CSS-type selector
    2) querySelectorAll returns a collection of all elements in the document that match the selector
    3) getElementsByClassName returns a collection of elements that have the specified class (not a selector)
    4) getElementById*returns the single element in the document that has the specified ID (there can only be one)
    5) getElementsbyTagName returns a collection of elements that have the specified tag name (type)

  • @JoelGRodriguez
    @JoelGRodriguez 7 років тому +1

    Hey dude, just wanted to say thank you. I just joined your $2 tier on Patreon... wish I could do the higher tier, but perhaps once I start making $ as a freelance developer I will. I have learned quite a bit from you and teaching style and I value an appreciate your work!

  • @knowledge101-f1d
    @knowledge101-f1d 2 місяці тому

    I am watching this video today, everlasting content from traversy.

  • @MichaelSalo
    @MichaelSalo 6 років тому

    It pleased me to see document.all mentioned here. An IE era invention that is shunned today but was once indispensable. It's more than a mere indexed collection by the way. It can also access elements by ID or name. It has superpowers.

  • @ukeshrestha
    @ukeshrestha 4 роки тому

    You deserve a lot more subscriber but it also proves that the most of the people that wanna program are less and enjoy watching comedy or vlogs that means less competition for us .
    Well whatever and keep doing what you are doing. Thanks a lot again :)

  • @deawar
    @deawar 4 роки тому

    In a code camp and this help explain what I wasn't getting. Eternally grateful, Sir!

  • @osiobeajiri1711
    @osiobeajiri1711 3 роки тому

    Your videos are very comprehensive, I 'm learning new things. Thank you

  • @czarlp
    @czarlp 7 років тому +2

    Thanks a lot Brad! Not a lot of people can teach though videos but you are definitely one of them.

  • @MalcomXPoscast
    @MalcomXPoscast 7 років тому

    Brad, You are changing the world!

  • @ahabwecollins
    @ahabwecollins 4 роки тому

    I am From Uganda Kampala For your respect I leave adds to play and even click on them just for the support

  • @RockstahRolln
    @RockstahRolln 7 років тому +1

    Yes!!!! I am SUPER EXCITED to see this course!! MANY MANY THANKS!! I will be more than happy to be Patreon supporter! I will commence a monthly donation. Thanks a LOT Brad!! God Bless You!!

  • @sergey_c
    @sergey_c 4 роки тому

    It is strange assumption to change background colour for items but not for you .

  • @rajatsawarkar
    @rajatsawarkar 4 роки тому

    you teach more than a university , your channel should be traversy university

  • @sc0820
    @sc0820 4 роки тому +1

    One thing I found very amazing. No matter the play speed I can still hear what you say. Are you a machine?

  • @berting347
    @berting347 8 місяців тому +1

    It's 2024 and still very helpful

  • @fogaamos6822
    @fogaamos6822 2 роки тому

    Thanks Brad, you are number one my programming success list of contributors, i love you, i can't wait to meet you some day to just say thank you

  • @fabiola761
    @fabiola761 6 років тому +10

    Bred, Thank You much for your courses.
    Please think about making a video for VS code features
    Ctrl+D is nice to change multiple entries at once
    Alt+Ctrl+DownArrow is coping marked text
    Alt+Down(Up)Arrows moves the text
    And MS could be a sponsor of the video for sure
    ;)

  • @kesc23
    @kesc23 3 роки тому

    This was exactly what i was looking for. I really needed to know JS, the logic part for me is easy but I couldn't understand the DOM. Now I'm happy!

  • @JCL-nu4ge
    @JCL-nu4ge 6 років тому +2

    This is awesome! Started my JavaScript journey a few days ago and now learning about Functions, Objects, Arrays, and Variables, then this popped up on my recommendation list so I decided to check it out. After the first 10 minutes of the video, I was just in awe after you used JavaScript to pull up all the information in the HTML... It was like magic!

    • @simonkiragu254
      @simonkiragu254 Рік тому

      Hi, how far with the journey. I am getting started too

    • @xhappybunnyx
      @xhappybunnyx 11 місяців тому

      @@simonkiragu254 check out launch school, and also DOM is, for me, like a year into the curriculum so don't worry if it doesn't make sense! There are so many weird quirks to JS that really help if you get a handle on first

  • @shibnathroy106
    @shibnathroy106 7 років тому +3

    Thank you so much for these videos. You are a big inspiration. You motivate me to learn multiple things and also help others

  • @foreverandadave
    @foreverandadave 6 років тому +2

    Just wanted to thank you for this course! It's been a huge help for me! You da man!

  • @raedeanfullerton3731
    @raedeanfullerton3731 2 роки тому +1

    first off, you sound like Ray Liotta's narration as Henry Hill in Goodfellas, and it is amazing. second, your videos are very helpful.

    • @reagan574
      @reagan574 2 роки тому

      lol makes it so easy to listen to! :D

  • @ShawnRead1
    @ShawnRead1 3 роки тому +19

    This looks like an amazing course and I am looking forward to going through all four videos! One question, is the html file still available for download?

  • @avi12
    @avi12 7 років тому

    Wow. Best JavaScript tutorial for beginners!
    I wouldn't consider myself as a beginner, but you're teaching amazingly!

  • @tz2014
    @tz2014 7 років тому

    You are awesome Brad have been subscribing to a lot of channels but when i hit traverse media i was like woow! this was what i was looking for.Thanks so much u always teach amazing staffs

  • @BorisVillanueva
    @BorisVillanueva 2 роки тому

    Best DOM tutorial online, thanks

  • @frontenddeveloper5895
    @frontenddeveloper5895 6 років тому

    Thanks Traversy Media I really learn a lot from your series It is very good experience thanks again from a Pakistani boy ❤❤❤

  • @Wadhwakaran96
    @Wadhwakaran96 7 років тому +179

    video duration: 39 mins
    video uploaded: 6 mins ago
    likes: 30 already😂😂

    • @TraversyMedia
      @TraversyMedia  7 років тому +78

      My peepz :)

    • @DUANEYAISER
      @DUANEYAISER 7 років тому +6

      Karan Wadhwa One minute to discover . . . And those first five minutes are pure gold. :-)

    • @krowwweee2918
      @krowwweee2918 7 років тому +5

      I see Brad's video - I like ;)

    • @RockstahRolln
      @RockstahRolln 7 років тому +3

      And counting! :)

    • @janipartanen3162
      @janipartanen3162 7 років тому +3

      People just know what they like :)

  • @k0secha
    @k0secha 5 місяців тому

    This is still an amazing tutorial in 2024, just a couple updates as the following are deprecated (feel free to add to this list or correct me if I made any mistakes!):
    document.domain- use the 'window.location' object, specify at the end either .host, .hostname, .href, .protocol, .port, etc. (document.URL will still get you the full URL)
    document.all - to log all elements with indexes use document.querySelectorAll('*');
    to select the element with the index of 10, save document.querySelectorAll('*') to a variable like allElements and then console.log(allElements[10])
    Also, don't use var. Use let or const instead.
    Pro tip: On VSCode (on windows) if you want to select multiple words at once (like when he changed all 'items' to 'li') press Alt key while selecting

  • @prashantsingh5142
    @prashantsingh5142 Рік тому

    Thanks for making me a better programmer

  • @nicoxdundeex1861
    @nicoxdundeex1861 5 років тому +2

    Dude, you're just awesome! very clear and concise.

  • @Aserve1st
    @Aserve1st 5 років тому

    Gunna watch all of your JS DOM videos. Very informative, very helpful. Thank you.

  • @attilaguba856
    @attilaguba856 Рік тому

    Just watched it fully! Very clear explanation! Great! Thanks !

  • @pallavikuthe2542
    @pallavikuthe2542 3 роки тому +32

    Hey Brad, Wonderful explanation as always. I couldn't find the HTML code link in the description. I will be happy if you can help.Thanks

    • @Volume201
      @Volume201 2 роки тому +5

      Its probably too late, but if anyone else is wondering like i did: In the Description of the Part 2 Series is the HTML code link (it looks like the code also used in this video)

    • @dontreadmyusername6787
      @dontreadmyusername6787 2 роки тому +2

      @@Volume201 in my case that didnt work as well lol, the site would crash every time so i headed to google and manually searched for his github repo...

    • @SaRa-ss5xf
      @SaRa-ss5xf 2 роки тому +3

      The link under the forth video works properly at this time, in case anybody needs it

    • @techtycho4752
      @techtycho4752 2 роки тому +2

      Just go to the 4th video and you will find a link to the codepen. Copy the code and install bootstrap via CDN.

    • @ianpropst-campbell6028
      @ianpropst-campbell6028 2 роки тому +1

      @@techtycho4752 Than you I was trying to find the html file as well

  • @faisalakram6825
    @faisalakram6825 2 роки тому

    Extremely helpful and professionally done. Thank you.

  • @nirajdewangan3508
    @nirajdewangan3508 7 років тому

    Thanks alot Brad.... Best guide and mentor ever listened. You examples are so good and easy to understand

  • @aerivera
    @aerivera 6 років тому +1

    Wow! your channel was suggested after searching JavaScript online courses. Wish I had found your channel before. Thank you for sharing your knowledge, everything was so easy to follow, always had the idea JavaScript was a pain in the @$$ but it seems like I'll enjoy the full series. Cheers.

  • @techtycho4752
    @techtycho4752 2 роки тому

    My entire webdev journey could have been much harder without Traversy Media.

  • @rorjackson
    @rorjackson 4 роки тому +1

    Thank you soooo much, You are best teached and mentor. I really love your videos, love and respect.

  • @Juanmv05
    @Juanmv05 7 років тому +2

    Thanks Brad. I'm following your videos and all of them are so amazing. You're a crack ! Greetings from Colombia ! (Sorry for my english)

    • @corinapelichowski2950
      @corinapelichowski2950 5 років тому

      Never apologise for learning a new language. You are awesome for giving it a go! :D

  • @alexjesus4891
    @alexjesus4891 5 років тому +1

    Thank you for this video! This cleared up many confusing issues I had.

  • @chunk1978
    @chunk1978 5 років тому

    Contrary to what you said in this video, NodeList objects are "array-like" and actually do NOT have access to Array prototype methods like push(), slice(), filter() etc. They have to be converted into an Array first in order to use those methods.

  • @vijay1599
    @vijay1599 4 роки тому +2

    ! Important (Be careful while using querySelector and querySelectorAll).
    when you manipulate the DOM (i.e adding or removing elements by JavaScript) the added new element's references are not going to be in the node list selected by querySelector and querySelectorAll methods.They are static lists.

  • @alexlun4464
    @alexlun4464 4 роки тому

    Amazing video dude, really like the way you explain everything in a way that is easy to understand.

  • @shadymohammed3197
    @shadymohammed3197 7 років тому

    I just wanna say thank you for your time and efforts
    U taught me alot

  • @marcelnunez1658
    @marcelnunez1658 4 роки тому

    Thanks Brad "Making life worth living" Traversy

  • @zachfenton608
    @zachfenton608 3 роки тому

    explains it a lot better than my teacher that just went on and coding and going between screens.

  • @sumantsagar9162
    @sumantsagar9162 Місяць тому

    coming from odin Project keep grinding guys

  • @haechoi5684
    @haechoi5684 2 роки тому

    Amazing explanation! Just the right pace for me. Thank you.

  • @anseljanson5171
    @anseljanson5171 4 роки тому +1

    thanks for the great video brad.very informative,precise and to the point.
    i was looking for something like this.
    liked and subscribed

  • @toomurmu9148
    @toomurmu9148 4 роки тому

    Best video on the internet !
    Just cleared it all at once..!😊

  • @bigodstudiosgh
    @bigodstudiosgh 4 роки тому

    hey Brad your courses are just perfect and help to me thank you very much

  • @ristekostadinov2820
    @ristekostadinov2820 7 років тому +37

    Brad can you make javascript oop crash course about prototype, bind, creating classes, objects ?

    • @iffipifi1
      @iffipifi1 7 років тому +13

      "JavaScript, understanding the weird parts" buy that course, you won't be disappointed

    • @lardosian
      @lardosian 7 років тому +2

      I think he might have already in an ES6 series..

    • @smallbusinessadvisors3456
      @smallbusinessadvisors3456 6 років тому

      Why wouldn't you focus on the functional js paradigm instead?

    • @harjitsingh7308
      @harjitsingh7308 6 років тому

      Small Business Advisors most jobs in my area are oop JavaScript so i guess it depends where you live

    • @harjitsingh7308
      @harjitsingh7308 6 років тому +1

      Keytron Quabius nope, but i have done an apprenticeship and done all the online stuff (code academy, freecodecamp, the odin project etc) and now im a full time web developer i recently got employed full time to make ecommerce websites !

  • @EngrGio
    @EngrGio 6 років тому

    I really never know how to do DOM i basically work but watching this video i know more!

  • @universal4334
    @universal4334 4 роки тому

    Hey Brad , I haven't seen such a wonderful lecture on dom . Planned really nice by making parts ....

  • @johnhaislip8254
    @johnhaislip8254 3 роки тому

    Man.. your the best ...I will be a regular donor...and many thanks

  • @sureshkrishnan83
    @sureshkrishnan83 6 років тому

    This is awsome .. thanks travis :) i am a system admin started learning web developement :) your video is really helping me .. keep up the good work. Cheers

  • @akinwaleadegboyega3312
    @akinwaleadegboyega3312 7 років тому

    Thanks a lot Brad Traversy. God bless you and your family

  • @Darkblitzrc
    @Darkblitzrc 2 роки тому

    Thank you for such an easy to understand and clear video!!! Loved it!!

  • @darrensanders7509
    @darrensanders7509 5 років тому

    Extremely helpful and professionally done. Thank you. Will be finding you on Udemy

  • @zabiiaryan8325
    @zabiiaryan8325 Рік тому

    Thank you. Believe or not I learned it from you not my instructor

  • @mdhasiburrahmannafiz9984
    @mdhasiburrahmannafiz9984 3 роки тому +13

    I am not seeing any html file link.
    Edited: hey people, it seems that somehow the code link has been deleted. But you can still get the link in the part-2 video's description box. Thank you

    • @JordonDev
      @JordonDev 3 роки тому

      Thanks!

    • @abhishekr.6026
      @abhishekr.6026 3 роки тому

      Thanks!

    • @ranjeet5806
      @ranjeet5806 3 роки тому

      Thanks man

    • @ranjeet5806
      @ranjeet5806 3 роки тому

      @@abhishekr.6026 Hey! I have a classmate named same as you (surname as well) what a coincidence lul.

    • @abhishekr.6026
      @abhishekr.6026 3 роки тому

      @@ranjeet5806 xD happens ig