Тёмный
Web Dev Tutorials
Web Dev Tutorials
Web Dev Tutorials
Подписаться
Hello, everyone, and welcome. I'm just a guy that loves developing software. On this channel, I share with you the knowledge I've gained about web development over the years and more. If you like the content, consider subscribing and perhaps joining the channel membership, that would really mean a lot to me. Have a wonderful day and thanks for checking out my channel.

- Miguel Nunez
Комментарии
@rubenreffell262
@rubenreffell262 День назад
when i typed in npm init it said there was an error and it couldn't find the string? please help
@benjaminaRandriantsoa
@benjaminaRandriantsoa 2 дня назад
Thanks bro
@codewithsehran
@codewithsehran 4 дня назад
simplicity: 💯 understandability: 💯
@muhammadakram1701
@muhammadakram1701 5 дней назад
The best tutorial
@nellepicard498
@nellepicard498 6 дней назад
hello, I tried to make this ( five column of nine photos) but it does not work... i am a bit stuck and if anyone as an idea of what cause this i would really appreciate some help !
@necxgen1884
@necxgen1884 7 дней назад
Is there a way to make it loop around? Like page 4 could next page into page 1 or the other way around
@vurra
@vurra 11 дней назад
great video. everthing worked out fine except for one problem. when i have my menu collapses and i click on the hamburger menu to open it, it only shows the home link and not all the other links
@AdewunmiOluwole
@AdewunmiOluwole 12 дней назад
Not straight forward, i don't get it...😥
@AdewunmiOluwole
@AdewunmiOluwole 12 дней назад
Not clear
@Rehangujjar-dv6ww
@Rehangujjar-dv6ww 14 дней назад
thanks
@xiseme9826
@xiseme9826 20 дней назад
FINALLY.
@sophietc10
@sophietc10 21 день назад
Thanks!
@EinDummie
@EinDummie 23 дня назад
Hey Sir, your Tutorial helped me alot, thank you and keep it up.
@wisdomudo8269
@wisdomudo8269 23 дня назад
Thanks for this, fastest way to learn about flex box.
@Davgarcia96
@Davgarcia96 23 дня назад
Gracias Miguel, estoy aprendiendo un montón con tus tutoriales 👌
@kzhang3835
@kzhang3835 24 дня назад
Thank you so much. This really works. 👍
@nibosvaska6645
@nibosvaska6645 24 дня назад
Great work, great code
@preetbhati-ni1xp
@preetbhati-ni1xp 25 дней назад
need full source code brother
@grigoldvali4124
@grigoldvali4124 Месяц назад
Hello, can you explain, why this code doesnt work? thanks a lot var index = 0; function changeColors(){ var colors = ["red", "blue", "green", "yellow", "orange", "purple"]; document.getElementsByTagName("body"[0]). style.background = colors[index++]; if(index > colors.length - 1) index = 0; }
@Minh-tx9qp
@Minh-tx9qp 28 дней назад
hello i am new to coding but i can maybe help : you wrote ("body"[0]) instead of ("body")[0].
@grigoldvali4124
@grigoldvali4124 28 дней назад
@@Minh-tx9qp thanks
@israelruas948
@israelruas948 Месяц назад
Thank you very much!! Easy explanation, it worked really well here!!!!
@developershub2024
@developershub2024 Месяц назад
Thank you so much, very helpful content. i will implement this in my Django project!!
@davebudah
@davebudah Месяц назад
This sooo cool, thank you.
@sahlarkrimov6834
@sahlarkrimov6834 Месяц назад
Thank you very much.
@yoskokleng3658
@yoskokleng3658 Месяц назад
why we need it (click to store cookie)? i saw many website have done this. please make a video of benefit of it?
@rishikasharma7137
@rishikasharma7137 Месяц назад
Awesome tutorial sir👍. But i have someone queries related to javascript. Could you please guide me?
@gurungbijay2125
@gurungbijay2125 Месяц назад
Thank you
@kageyoshi3656
@kageyoshi3656 Месяц назад
Easy to follow, gets the job done, works flawlessly -> Subscribed! + Liked! + Shared!
@milanmegens4681
@milanmegens4681 Месяц назад
Great tutorial!. However, If i add new li's for more options my burger menu disappears. Could you help me?
@Lorry127
@Lorry127 Месяц назад
Thanks!
@christineiammarino143
@christineiammarino143 Месяц назад
That was fabulous, easy to follow. No extra fluff to confuse the issues. The only critique I have would be to explain a little more in depth what is going on behind the scenes and why. Overall this was an excellent video series that I successfully followed from beginning to end and have a working application thanks to you!
@Nitesh__Nayak
@Nitesh__Nayak Месяц назад
It does not work with latest library of font-awesome.
@pini5076
@pini5076 Месяц назад
thank you so much! amazing simple explanation!
@adrianfabian6694
@adrianfabian6694 Месяц назад
Great video and straight to the point. Thanks!
@prashantmishra5691
@prashantmishra5691 Месяц назад
Great stuff. Subbed!
@narkotrazg.a8936
@narkotrazg.a8936 Месяц назад
This was my Solution. its working but the timer has a delay and 1 second is in my solution 1,5 secends lol const container = document.querySelector(".container"); const timerText = document.querySelector("#timer-text"); let timer; let milliseconds = 0; let seconds = 0; let minutes = 0; let timerAktiv = false; let proofeTimerAktive = false; container.addEventListener("click", function(){ startTimer(); if(timerAktiv == true) { pauseTimer(); } }) container.addEventListener("dblclick", function(){ resetTimer(); }) function startTimer() { if(milliseconds == 0 && seconds == 0 && minutes == 0 || proofeTimerAktive === true) { timer = setInterval(function() { milliseconds++; if(milliseconds >= 100) { seconds++; milliseconds = 0; } if(seconds >= 60) { minutes++; seconds = 0; } timerText.innerHTML = formatTime(minutes) + " : " + formatTime(seconds) + " : " + formatTime(milliseconds); timerAktiv = true; proofeTimerAktive = false; }); } } function pauseTimer() { clearInterval(timer); timerAktiv = false; proofeTimerAktive = true; } function formatTime(time) { return (time < 10 ? "0" : "") + time; } function resetTimer() { clearInterval(timer); minutes = 0; seconds = 0; milliseconds = 0; }
@farukislamfarabi4908
@farukislamfarabi4908 Месяц назад
Hurray! Finally I have come to finish this playlist. I have understood everything and can build those project again. Thank you to the content creator. Thanks a lot. Wish you good luck for your every journey.
@flathippo4997
@flathippo4997 Месяц назад
doesnt work anymore
@cleversort1567
@cleversort1567 Месяц назад
guys do you know why onclick button doesn't work? It also affect js code
@cleversort1567
@cleversort1567 Месяц назад
i need help, the save and close button doesn't work on html
@giulia6930
@giulia6930 Месяц назад
Thank you, clear and step by step explanation. I was looking for this!❤❤
@tonytodd7011
@tonytodd7011 Месяц назад
Great lesson, I like it! The video is really solid and compact, not like multi-hours todo-list ones I've ever seen!
@laziz_khamidov
@laziz_khamidov Месяц назад
but it worked when I did methods = dialog
@laziz_khamidov
@laziz_khamidov Месяц назад
thank you bro
@farukislamfarabi4908
@farukislamfarabi4908 Месяц назад
But here are some limitations to this project. 1. wrong answer will not be anyhow more than 12. 2. if you see any decimal number in divide math, be sure that this is the corrrect answer. However, that's the awesome and amazing beginner friendly project where we can rely on and we can enhance our learing. thanks to the creator of this project.
@mstaklimaakter247
@mstaklimaakter247 Месяц назад
That was too hard to understand from me. but again, thanks god that I have understood this tutorial. if anybody don't understand this still do let me know. I am here to help.
@jimmyjayant8072
@jimmyjayant8072 Месяц назад
Excellent Video. Keep it up. I tried your to do list live. And I found a problem. If the original task is "abc". And after editing it to "abcd" we click on cancel then the original task is not shown. Instead the edited task "abcd" is shown. Please correct this one.
@polyglot1135
@polyglot1135 Месяц назад
Ive seen many tutorials while getting ready for my portfolio but by far i think you teach the materials the best thank you its very helpful and informative appreciate it update: i thought i coded it wrong but turns out there were many errors T.T still helpful though was about to find one error so far, idk how you got yours to work
@cartoonartist-hq6vn
@cartoonartist-hq6vn Месяц назад
my javascript code not working anyone please help me
@nolleyflip
@nolleyflip Месяц назад
I’m in school rn and these videos are hella cool to have
@ranzethan
@ranzethan 2 месяца назад
how do i set the loading time? because mine lasts very quickly