How to create a new element in DOM | chai aur

Поделиться
HTML-код
  • Опубликовано: 25 окт 2024

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

  • @shreshthagupta7771
    @shreshthagupta7771 Год назад +143

    16:00 Important discussion about NodeList. A nodelist is a collection of document nodes which includes text nodes , attribute nodes and element nodes. A line break is also counted in nodelist but only first one. All subsequent line breaks are ignored by browser

    • @adideveloper
      @adideveloper Год назад +4

      op

    • @talhakhan4684
      @talhakhan4684 Год назад +7

      Comment nodes as well by the way. And I have a question, you said line break is also counted in nodelist but only the first one but I think all the lines breaks are counted and they are represented as textNode in nodelist. Correct me if i am wrong.

    • @Asadullahabbasi-mi6cq
      @Asadullahabbasi-mi6cq Год назад +9

      @@talhakhan4684 you are right not first one but every line break is counted but if there are multiple ine breakes simultaneously or right after same node than they are ignored

    • @hemantprasad5972
      @hemantprasad5972 3 месяца назад

      comment is also counted

  • @ruchikarawani
    @ruchikarawani Месяц назад +3

    I SWEAR THAT I HAVE WATCHED A LOT PEOPLE'S JS COURSE , PAID AND FREE BOTH BUT KABHI KISI NE HITESH SIR JAISA EXPLAIN NHI KIYA HAI, EXCELLENT JAVASCRIPT COURSE MAN, THE BEST JAVASCRIPT COURSE I HAVE EVER WATCHED , RESPECT💯

  • @shwetanshu13
    @shwetanshu13 8 месяцев назад +7

    This is undoubtedly the best structured JavaScript course. Not unnecessarily long and very informative.

  • @nusratlines4947
    @nusratlines4947 Год назад +178

    Jab jab mushkil Lagta..Bhai kehta Hy..ye to basic tha.....

    • @Bharat_Rider
      @Bharat_Rider 8 месяцев назад +5

      😂😂🤣🤣🤣

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

      Bhai khta hai basic hai .. agly bndy ki bund path k hath ma ajati hai😮

    • @LearnWithManan.110
      @LearnWithManan.110 7 месяцев назад +1

      Right Bro😅😅

    • @aadilyt1573
      @aadilyt1573 6 месяцев назад +3

      Us bro us 😢😂

    • @codingvampire1
      @codingvampire1 6 месяцев назад

      Bc har cheez pe basic hahahhah hum toh chutye ha

  • @Naruto_V11
    @Naruto_V11 3 месяца назад +4

    I'm from Andhra Pradesh and my language Telugu and I'm just average at Hindi and still I can able to understand your classes very clearly becoz of your Slow and Clear explanation and pronounciation Thank you so much Hitesh Sir

  • @oqant0424
    @oqant0424 8 месяцев назад +3

    27:20 wakai me ab confidence aa raha hai JavaScript me
    Thanks a ton Sir ❤❤

  • @mahmudulhasan1210
    @mahmudulhasan1210 6 месяцев назад

    This is undoubtedly the best structured JavaScript course. Not unnecessarily long and very informative.

  • @Fusion-Flow
    @Fusion-Flow 2 месяца назад +4

    Best JavaScript series I’ve ever watched.
    Thank you Hitesh Sirr❤

  • @KrishJaiswal-fr6gn
    @KrishJaiswal-fr6gn 2 месяца назад +2

    Kafi acche se DOM samjhaya aapne sir thnks.

  • @arghyadeepkundu5664
    @arghyadeepkundu5664 7 месяцев назад +1

    this lecture teaches us easily about DOM.. You have an incredible teaching skill.

  • @adarshpatel5791
    @adarshpatel5791 2 месяца назад +3

    Good teaching skill, sir.
    Even though bigener can easily understand.

  • @AhmedRehan01
    @AhmedRehan01 6 месяцев назад +5

    I have done js from various courses and yt Channel but no have explained in such depth really thankful to you

  • @divyanshsharma673
    @divyanshsharma673 8 месяцев назад +2

    You're an amazing teacher, I was used to learn JavaScript by myself but I wasn't ever confident. One of my friend suggest your playlist to me, and now I'm looking for the react series as well. I like the friendly way of your teaching.

  • @hassanghani8039
    @hassanghani8039 10 месяцев назад +4

    never ever thought that i will ever learn javascript with this much depth Hats off boss love from pakistan
    really excited for next videos and react series

  • @JamshaidAzam-w6x
    @JamshaidAzam-w6x 22 дня назад +1

    really you are great sir that is course helpfull for every beginner student before it seems i cannot learned javascript but now it seems i can javascript and now i do javascript thanks you very much sir ❤❤❤❤and you are hero for me and every beginner student

  • @abhihirwani4403
    @abhihirwani4403 Год назад +5

    finally I have get the very good and very deep knowledge of the DOM your videos are just like a series, love to watch and learn new concepts of JavaScript please make more videos on that and please also create video on the behind the seen of react github

  • @JeetuKumar-wd1uw
    @JeetuKumar-wd1uw Год назад +12

    After watching this lecture i fell i should learn again javascript❤❤❤😢 never see such a awesome content on free course😊😊😊

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

      Bhai Same feeling...

    • @manishasaini307
      @manishasaini307 9 месяцев назад +1

      @@ankursinger102 same to same bro

    • @rajendrakumarsharma674
      @rajendrakumarsharma674 24 дня назад

      I have been 1 year in web development and I am feeling like I am learning JavaScript for the very first time, he teaches on the basis of practical approach

  • @theartistbhavik
    @theartistbhavik 11 месяцев назад +4

    Thank you for this entire series ! 🙌

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

    Now I have a superb confidence in me about javascript and even I can read documentations easily.
    Please start React after finishing this.

  • @shobitkhatri9242
    @shobitkhatri9242 9 месяцев назад +5

    26:28 timestamp
    here is the code:-
    const arr1 = ['ashish','bhanu','naveen','gautam']
    const arr2 = ['blue','green','yellow','red']
    arr1.forEach( ( text,index ) => multipleButtons(text,arr2[index]))

    function multipleButtons(text,bgColor)
    {
    const button = document.createElement('button')
    console.log(button)
    button.setAttribute('className','firstbutton')
    button.setAttribute('type','submit')
    button.style.backgroundColor = `${bgColor}`
    button.style.cursor = 'pointer'
    button.style.padding = "12px"
    button.style.borderRadius = "10px"
    const textnode = document.createTextNode(`${text}`)
    button.appendChild(textnode)
    document.body.appendChild(button)
    }

  • @MayankChoubey-j8m
    @MayankChoubey-j8m 9 месяцев назад

    good very good excellent hitesh sir, maine kafi teachers se DOM or javascript padhne ka koshish kiya magar pata nhi kyun har baar DOM ki baari aane per kuch samjh nhi aapata tha, maine koshish ki per mujhe nhi hua, aur fir maine aapki chai aur javascript course ko pichle 26 dino se padh rha hun aur ab mujhe wakai lag rha ki "Haan,maine kuch sikhaa hai sir". Aapne kya jordaar tareeke se javascript padhaya hai, padh ke maza hin aagya aur khaskar DOM ko itne behtareen aur indepth explain kiya ,i loved that.thankou aisehin aap achhe achhe contents daalte rahen

  • @KushareHarshal
    @KushareHarshal 8 месяцев назад +1

    Sir I am from Your "PW Web Development Batch".... 😊
    Aapke bina padai nahi ho rahi thi to Search Karate huye...Aap mil hi gaye Ab to sirf build karana hai...
    Thanks lot
    Respected❤

  • @aryanbhatt5934
    @aryanbhatt5934 3 месяца назад

    beginners like us are very struggling with learning js.. You are making the best efforts to vanish that struggle.. Thank You sir

  • @harshvardhanjha473
    @harshvardhanjha473 Месяц назад

    sir this course really help me to understand Basics of JavaScript

  • @CineCrave_Sriese-t6e
    @CineCrave_Sriese-t6e 19 дней назад

    lecture complete 👍👍 thank you sir

  • @AshwaniPatel-b5z
    @AshwaniPatel-b5z 2 месяца назад

    Maine bahut se vidseos dekhe hai youtubers k but unme se sabse behatareen aapke hai

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

    Thank you for this entire series! Hindi mai JavaScript sikhnese ye saare concepts lifelong yaad rahenge.

  • @rakshitchauhan3266
    @rakshitchauhan3266 25 дней назад +1

    Aree Sir ek baat bolu , aap kuch bhi padhte ho mst padhte ho mn kerta hai sab kuch padh lu 😅 but majboor hu course se related hi padhna hota hai , literally Sir aapke bolne ka style uff dil or dimaag dono per raaj kerta hai mn khush ho jata hai aapse padhke 😊

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

    i wish i founded this corse 3 months ago, i was searching youTube and founding corse and cores but cound't learned JS, now i have found amazing course, with amazing mentor, thank you form bottom of my heart❣❣

  • @AnimationVO
    @AnimationVO 13 дней назад

    "Yeh toh basic tha, yeh toh aapko aata hoga" 😭😭😭 this line got me. Mjhey yeh smj nhi aata key mein hi akela wo bnda hun jis ko basic hi nhi smjh aata

  • @Memelustreels
    @Memelustreels 9 дней назад

    One of the most satisfied Playlist sir ❤ Mahadev bless you

  • @supriyaghanekar3904
    @supriyaghanekar3904 2 месяца назад

    just awesome series!! thank u so much

  • @kalibsamsongill3389
    @kalibsamsongill3389 5 месяцев назад +1

    nhi sir ap bht mehnat kar rahy hein khuda apko or bhi zda barkat de

  • @anirudhr4710
    @anirudhr4710 6 месяцев назад +1

    Such an amazing lecture man salute

  • @tarunsharma4402
    @tarunsharma4402 Месяц назад

    really a amazing javascript playlist 🔥

  • @subratkumarnayak2560
    @subratkumarnayak2560 3 месяца назад

    SIr I'm currently doing your 30-days Javascript Challenge, and these videos helped me to learn the concept and the challenge helped me to apply those learning....

  • @phoolkumari1563
    @phoolkumari1563 Год назад +13

    रोज इसी का इंतजार करते हैं आज पुनः मिल गया

    • @chaiaurcode
      @chaiaurcode  Год назад +25

      1 aur video editing me gya hua h, kl vo b aa jayega

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

      Sir itna wait mt kraya kro 2 din m video upload kr diya kro❤❤❤

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

      ​@@chaiaurcodeplz sir video dalo

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

      @@chaiaurcode waiting for the next video

    • @samiransari-fg6kx
      @samiransari-fg6kx Год назад +2

      ​@@manendersingh6514Bhai unke office works v h family v h Thora unke bare me v socho.

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

    Great series .. i learn a lot.we wanna more in dept concept .
    Carry on sir..🎉

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

    I had learnt javascript from paid course on Udemy but could not built a single project or even could not understand what was going on, but I knew basic javascript so I started to watch your react videos after saw your teaching style I decided to learn javascript from your videos and now i am quite confident to build a project, thank you sir for such amazing move to provide practical knowldege.

  • @AmanKumar-dm8mn
    @AmanKumar-dm8mn 6 месяцев назад

    Sir I have done js from various courses and yt Channel but no have explained in such depth really thankful to you ❤❤

  • @anupammishra2891
    @anupammishra2891 6 месяцев назад

    sir you absolutely right that.......i have confidence about java script because of you ......thanks a lots

  • @tanmayvidhate4613
    @tanmayvidhate4613 6 месяцев назад

    Excellent dom manipulation sir 👍👌with practical

  • @krunalpatel7437
    @krunalpatel7437 5 месяцев назад

    Excellent Content which I have Watched on RUclips.
    Satisfied Content.😍

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

    Addicted to CHAI (earlier) , aur CODE(Now)...
    Thanks Sir for making this series, have been searching for such DOM Videos from so long...

  • @amit16_01
    @amit16_01 6 месяцев назад

    Respected Sir, Your teaching style is very unique. like💯💯💯💯💯💯💯💯💯💯💯💯💯

  • @rajeshkamble9759
    @rajeshkamble9759 4 месяца назад

    thank you Sir..!! your teaching method is great..!!

  • @vaibhavilohani3421
    @vaibhavilohani3421 9 месяцев назад +1

    Thank you so much sir!!Excellent explanation!

  • @VishalSharma-rn7mt
    @VishalSharma-rn7mt Год назад +1

    Awesome Sir, learned the very important concept
    Aap hamare liye legend Guru hai ♥

  • @virajagarwal1714
    @virajagarwal1714 4 месяца назад

    sach bolu toh I never thought ki mere ye topics itne ache se clear he=onge. Thanks you sir for such a lovely topic discussions.

  • @Knwld
    @Knwld 2 месяца назад

    Greatest explanation sir!! ...... Really thankful from my bottom of the heart to this greatest personality @chai and code

  • @Poojapaul-i5y
    @Poojapaul-i5y Месяц назад

    still sir this series now help alot because i am learning javascript thankyou sir

  • @heyMonikaa
    @heyMonikaa 7 месяцев назад

    The humbleness is just another level

  • @tarunsikarwar
    @tarunsikarwar Год назад +2

    perfect series of javascript and perfect teaching style?

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

    I’m from Pakistan but your Urdu is so perfect. Your videos are excellent resource to learn DOM manipulation in JavaScript

  • @spiderbhau
    @spiderbhau 3 месяца назад

    I really appreciate you for this course it's amazing 👌

  • @NattyTrader
    @NattyTrader 7 месяцев назад

    This series was very helpful..............Thank you!!

  • @singhamita
    @singhamita 6 месяцев назад

    16:00 Child nodes very nice and important discussion !!

  • @pannerbiryani3002
    @pannerbiryani3002 Месяц назад

    Amazing video! Your helping us alot in web dev!

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

    BEST JAVASCRIPT PLAYLIST EVER !!
    Thank you so much Hitesh sir!!😀😀

  • @singhamita
    @singhamita 6 месяцев назад

    Thank you for rolling out such a quality content . Your contents are dopamine booster for soul lost in modern world of tutorial hell !!

  • @janankhan6017
    @janankhan6017 11 месяцев назад

    You Are a Great Teacher Sir G... Your Teaching Style or Method is so Good. Salute to You

  • @rohitsingh04141
    @rohitsingh04141 7 месяцев назад

    Sir Your Teaching Method Put the beginners in Love with JS. A lots of Love for Chai and Code.

  • @Hamza-Pro-Dev
    @Hamza-Pro-Dev 4 месяца назад

    Difficult to tha hi ni kabi.. WOnderFul sir ji❤

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

    thankyou so much sir sir please do continue this series sir . your videos have made javascript so easy to learn
    😍

  • @SalmanAhmed-m7d
    @SalmanAhmed-m7d Год назад

    Thanks Sir...mjhy ye blkl smjh nhi ata tha but ap ny bht achy se smjhaya hy.

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

    Your tutorials are addictive. The learning becomes fun with in depth understanding.Thanks so much.

  • @freek937
    @freek937 6 месяцев назад

    Completed the Whole Lecture in One Sitting while writing code and practicing different examples.

  • @drive-c9j
    @drive-c9j 9 месяцев назад

    i love your way of teaching. very friendly approach

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

    Amazing Person. Your speaking style is so good and polite & you exactly know how to deliver.

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

    16:00 Yaha se childNodes explain kiya hai, bhaidya concept laga , deep understanding milli ki kaise jo code hamare liye 5 lines ka hota hai browser usse kitne hisso mai todta hai and kis data structure ka use karta hai and kaise render karta h, awesome 🔥🔥🔥🔥

  • @ShubhamVerma-tj7jc
    @ShubhamVerma-tj7jc 2 месяца назад

    great explaination sir 👍

  • @alihassanhassan5100
    @alihassanhassan5100 7 месяцев назад

    Ham ny tuu chai or code syaa ❤ laaga liyaa ha JavaScript master kr ka abb chory gya sir bhtttt shukaria apky 😊 ❤❤

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

    Amazing notes I get just by watching your videos on JavaScript...

  • @akankshabholane9354
    @akankshabholane9354 Месяц назад

    I have watched many videos on youtube related to javascript to clear my concepts but after watching this series i dont feel the need to look for another videos

  • @DhrupSter
    @DhrupSter 6 месяцев назад

    wonderfull sir, well structured, well tought, glad to have taughter like you

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

    I am learning a lot of thing from this series. Thanks a lot sir for this series. - Ajay Singh

  • @RKSAINI10
    @RKSAINI10 7 дней назад

    Excellent teacher ❤

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

    Very helpful for JavaScript learning in your RUclips channel ❤❤

  • @Prabhat_Sharma5
    @Prabhat_Sharma5 2 месяца назад

    best javasript course on youtube

  • @mustansargill
    @mustansargill 3 месяца назад

    Very informative and interesting video 🎉

  • @DeveloperArhamAli
    @DeveloperArhamAli 4 месяца назад +1

    this course has no price because this masterpiece is priceless

  • @mbgreat03
    @mbgreat03 24 дня назад

    Thank you for this entire series ! 100

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

    this is the best series on RUclips for javascript fr

  • @poojagavhane7966
    @poojagavhane7966 6 месяцев назад

    Thank you so much sir.. really it's a very useful series .

  • @shardulwagh425
    @shardulwagh425 6 месяцев назад

    sir aapki series bhot help kr rhi hai padhne me

  • @RahulGupta-ki6mf
    @RahulGupta-ki6mf 8 месяцев назад

    Its always great to have you sir for javascript learning path as I have tried to learn from many others but failed to know the deep concept of javascript and also felt low. But now I am confident in it and trying to stick with you for learning javascript backend as well.

  • @haariskhan961
    @haariskhan961 7 месяцев назад

    bhai ur teaching level is unmatched

  • @Shubham-zy1qu
    @Shubham-zy1qu 6 месяцев назад

    bro is so concerned about our eyes how humble you are❤

  • @learnforsurvival1208
    @learnforsurvival1208 Год назад +2

    This tutorial I felt is really helpful....theories and practical balance is of top notch

  • @asmittyagi6250
    @asmittyagi6250 Год назад +2

    Best explanation 🙏

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

      thanks, bro for telling me about this playlist. You don't know how much I was struggling to learn JavaScript. You truly are the savior.

    • @siddharthparasher2119
      @siddharthparasher2119 Год назад +2

      Truly the best explanation.

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

      @@siddharthparasher2119 any time bro .

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

    Great Series Sir . DOM concepts is 'lit' 💥

  • @mixedmoments9050
    @mixedmoments9050 6 месяцев назад

    bohat arsy bad youtube sy seekhny ka mza aaya yar

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

    One of the best courses , Thankyou so much sir

  • @thecalgarians4597
    @thecalgarians4597 7 месяцев назад

    This video was the MOST MIND BLOWING of all 33 vids till now.
    The way you explained a not-so-easy workflow in such an easy manner... Kudos, HItesh ji
    ♥🧡🧡

  • @MuhammadYasir-cl4jp
    @MuhammadYasir-cl4jp 9 месяцев назад

    Sir your JavaScript playlist is top notch. Thank you so much for bringing this high quality content❤❤

  • @BHAVINPATEL7238
    @BHAVINPATEL7238 7 месяцев назад

    Really awesome. never knew the thing that innerText,className and id does the round trip for setting values. totally insightful and lucid explanation Sir Ji.

  • @nehabansal370
    @nehabansal370 7 месяцев назад

    Thanks again for the amazing content sir. Enjoying learning😃

  • @acxd
    @acxd 2 месяца назад

    Must course for beginners!

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

    Thank you so much sir for this series..Please do continue.

  • @udaybhalotia1686
    @udaybhalotia1686 19 дней назад

    so nice video Hitesh Sir ji