It feels so good to see a KZbinr not using shit load of JS frameworks/library to get the simplest task done. Thank you for keeping it simple and concise 🙏🏻.
@Tazzquilizer Жыл бұрын
Totally agree. it's crazy how many people are loading 150kb of react, just to do the same that template literals can do.
@rishiktiwari Жыл бұрын
@@Tazzquilizer Exactly, I built enterprise grade realtime app with nothing but vanilla js! Few things take longer but the performance gains and peace of mind is unmatched!
@Syffx.10 ай бұрын
Its always so annoying looking up a tutorial and seeing a bunch of functions I can't use when I literally just want to change the color of text
@theleeclan002 жыл бұрын
Clear and clean explanation, one of the best tutorials out there
@dcode-software2 жыл бұрын
Glad you liked it!!
@nateward71208 ай бұрын
Really helpful. I’ve been struggling for a couple of days, and this pointed me in the right direction.
@simonadouglas3 жыл бұрын
A clear, concise explanation. However, have you really used a to create a numbered list? Would an not have been more suitable?
@OlebogengRasebitse Жыл бұрын
Your explanation was very clear and easy to follow. Thanks!
@suvrotica Жыл бұрын
Marvelous content ❤
@unyimejacob74088 ай бұрын
You are a good teacher, thanks a lot.
@aliqureshi39746 ай бұрын
Exactly what i was looking for. Thank you so much you helped alot for my project a blog website.
@dcode-software6 ай бұрын
Nice one 😎
@nahlayasmine9242 жыл бұрын
I’m so impressed with your teaching skills,thank you 🙂
@seangrogan36222 жыл бұрын
super clear and useful, thanks
@jeenitprajapati34493 жыл бұрын
Wow!! Excellent!! Excellent💯👍👏
@dcode-software3 жыл бұрын
😀👀
@erichrick58172 жыл бұрын
You did well on this video. Really well done.
@itis9555 Жыл бұрын
thanks for this great tutorial! i learned so much.
@DarylMalibiran3 жыл бұрын
@dcode I haven't tried yet but some people are using return . Do you have a video for this?
@sergioernestotostadosanche57003 жыл бұрын
Sublime explanation, clear & sample, also you motivate us to do it ourselves. Congratulations bro!
@sbasalan3 жыл бұрын
Thank you for this valuable tutorial, Dom.
@saqlain52753 жыл бұрын
Thanks. you saved my day.
@sta8hs132 жыл бұрын
Liked and subed. I like you. You must be a great teacher, cu around!
@Ckk20242 жыл бұрын
Owesome! Thanks very much!!
@jamblob3208 Жыл бұрын
how is there a ul displaying numbered list hey? A bit of a fixup.
@retagif3 жыл бұрын
Save my day! I´ve been struggling with these concepts, thank you very much! But what about inserting images with the img tag?.......
@djordjek39163 жыл бұрын
Of course you can. You can insert div and divs, p, headings, imgs, etc., inside the main div. You can also add classes and animations to all elements in the div but you have to style them in CSS first. The way I am referring to is insertAdjacentHTML(). I did that in my last project. Just take a block of code from HTML and then put it inside backticks in JavaScript, add all classes (if they are not already added in HTML) and inject it. Just like that. Easy. 😊 Try playing with it in Codepen.
@faiezwaseem20473 жыл бұрын
Nice info! 👍
@strategistaow3520 Жыл бұрын
Can you make larger progect
@lol-eq8os2 жыл бұрын
love you
@amircahyadi92193 жыл бұрын
❤️❤️👍
@ban_droid3 жыл бұрын
I just thinking about what you mean by "create html dynamically with javascript" is creating html file and open the html file with some kind of web server to open html pages using javascript 😂
@Dr.smileclinic2 жыл бұрын
Wow
@suelingsusu13393 жыл бұрын
🙏🙏🙏🙏🙏🙏🙏🖖🖖🖖🖖🖖🖖🖖🖖
@randalfjohn98483 жыл бұрын
Very long process and code with this method
@rishiktiwari3 жыл бұрын
Well it is more of a necessity now days as things are moving to SPAs and when the app logic is on client side instead of server side. A more efficient way would be to use document fragment to dynamically generate HTML.