I think I may get my degree completed before I ever get jQuery to work sir. I talked to you about 9 months ago and you tried to assist me and til this day jquery will not work on my Mac. No one including my instructors have been able to get it to work on my Mac do you have any ideas at all? javascript works fine
@@Gojam12 Your mac might just be more trouble than it's worth at this point so I would give up on running it locally. Setup a free AWS linux cloud instance and run it there.
I noticed that I can't respond to people if they post a comment on Google+ and also block replies from anyone that is not in their circles. Please understand that if I don't respond to your comment that it is because I'm blocked from doing so. Sorry about that.
+Derek Banas Have you tried to logout and back in? I had something similar happen to me recently and it seemed to fix it. As if some old certificate was being cached.
Derek, IMHO these videos you make are tremendous service to humanity. I’m not a professional programmer, but kind of a rabid enthusiast and I watch a whooooollle lot of programming videos on UA-cam. There are some other good ones out there, but yours are by far the most no nonsense, easy to understand and straight to the point - coding. I salute you for your great work and heartily encourage you in your labor of love in educating the UA-cam masses.
Honestly, what are you doing is amazing! Not only the tutorials, but providing the code and the files, also recommending books to read (taken the PHP and MySQL one did really help me), everything is amazing and I'm really grateful! Once again great job, and please keep doing this!
This is one of the best programming tutorials I've ever seen. I can't believe how much knowledge you've put into it in 1 hour. Probably 1 week worth of reading. Amazing job! hope you make more like these.
You know, I actually have been blowing off jQuery for a while now. It was one of those "everybody can do it" libraries that I haven't used much in reality. This video is right on time. I kinda needed it so I can stop being ignorant on this topic. Thanks again Derek!
+Pavel Razuvayev Your welcome :) JQuery makes many things that are hard to do with JavaScript very easy. It solves numerous cross browser issues as well.
I'm working with JQuery at my internship and I do think you have one of the best programming channels on youtube. Thanks for the videos and keep em coming!
Man. you rock. His voice is fantastic and clear. Most of all, not boring at all. If I try to learn J Query from other tutorial it might takes a several months. Nice job. Thank you.
Not only your videos are on point, the comment section is also great. You reply to almost all the comments. It's the only youtube channel that I read comments also.
Dude your tutorials are the best ones. "jQuery book in one video tutorial". I will recommend this video to everyone who is new to jQuery or just wants to review all these awesome things that you just showed.
derek is better than all other youtubers who teaches programming because they mostly teach theory but derek focuses on programming thanks for that sir.
What I want to know is how you use jQuery to read minds? I was just thinking just this morning how great it would be if somebody made a complete jQuery tutorial, start to finish, including ajax techniques, all in a single video, and posted it to youtube. And sure enough, boom... here it is! Dude, you rock!
When I want to understand a language in about 1 hour and 14 minutes time, I watch your videos. When I want to understand a language in about a semester, and waste a ton of money through the guise of a prestigious educational institution, I go to school. ~ As a side note. Did you ever know that you're my hero? You're everything I wish I could be. Your lessons help our coding soar higher than an eagle.. YOU are the wind beneath our wings.
It's not everyday you come across a tutorial that is so well explained and articulated and for that Sir I can't thankyou enough. The amount of time and effort you have taken to compile all this and literally spoon feed it to us all is so greatly appreciated. Hands down the best tutorial on the internet explaining JQuery. We love you !!!! ))))
Brilliant tutoriol once again Derek ! 0. pre-search and know what is jQuery 1. read some basic documentations 2. watch the video 3. download the code play with it 4. next day re-watch the tutoriol and use the pause button this time 5. now you know almost everything about jQuery ! But I would be even happier if you can make a project with using all technologies html css bootstrap jquery ajax etc. that would be great way to use the knowledge for us. + Maybe can you tell me how to find such projects on internet? I would like to see and re-do these projects with my own skills again Thank you :D
Thank you very much and I agree with your step-by-step plan. JQuery is pretty straight forward in how it works. For most languages I'd say to test your knowledge here projecteuler.net/
I'm taking on a personal challenge to become a developer and have started a blog to track my progress. This month im focused on jquery, ajax/json and bootstrap. I like the steps you've set out and plan to start them today. Seeing that Derek agrees with your plan id love to hear what you think about learning ajax/json and bootstrap. what steps should I take? I just need a functional understanding in order to actually program my own projects.
This tutorial is really really good for those persons who are want to learn JQuery as less time as possible. I personally like it so much. Thanks a lot for it.
Wonderful! This is the perfect way to get a broad and deep idea of what jquery offers without having to grind through a slew of introductory material. Time well spent. Thanks!
You know whats really cool about JQ? How you are Target/select multiple things in one query. I recently found out about this. so if you have multiple rows and columns in your code you can target as such. $(".col-lg-6:eq(2) .square:eq(2)").css("backgroundColor","green"); Note that counting for programs starts at one so in this case I am targeting the 3rd Row and the 3rd Column
I'm so happy to find such a clear, concise resource to brush up on the technology currently available! Thank you VERY much for the time you dedicate to helping others!!!
Really outstanding tutorials Derek!!... I've been watching so many of these crash courses and love the pace! Idea for a series for you, "Programming for kids". I have a 8yr daughter who is hot on scratch and I'm keen to move her onto Java.
Seriuously dude! How in the world do you do these tutorials? I’ve been developing for many years and I find it amazing how much information you pack into these tutorials! You rock man!
+ Derek Banas, Thanks for all your insightful resources. I must admit I've learnt from you pretty much every programming language I currently know of. I have a video request to make though. With the multitude number of Javascript libraries out there, can you kindly make a video on their similarities and their differences? The decision making process to opt for certain functionalities over others contained in those libraries?
I like all your videos and appreciate the efforts you pour in I always find it as a quick reference and its kind of great tool for any programmer who switches between languages all you do make em worry free hassleless revision process through your fast forward tuts.
There's one thing I never understood about jQuery. Why is it so important that all code is written in the .ready() function, if your script is at the end of the tag? If it's at the bottom of the body, it's going to execute if all other elements have finished loading.
+Bogdan Mitrovic I'm not as good as Derek, but I believe it's because the Document Object Model needs to be fully loaded so that you can select elements from it and it just ENSURES it. If it isn't then the code won't be able to store it in a jQuery object and it'll just be dead code- // Derek you can correct me.
Thanks a lot for this tutorial. This was the one I was exactly looking for. This is excellent for beginners. Much appreciated. Please keep the good work up
Great Job.. the tempo was intense, you must write code like a mad man. I'm moving on to your Javascript tutorial. Thanks for putting these presentations together.
( 30:54 ) For hover function, this below code [ $(this) ] would have been better if you are looking to hover only the hovered element instead of every h2 $("h2").hover(function() { $(this).css('color', 'green'); }, function() { $(this).css('color', 'black'); });
Wow! Talk about a CRASH COURSE! This was actually exactly what I needed, because I studied jQuery a couple years ago but haven't used it much at all since - it was a great combination of refresher and intro-to-new material Excellent voice audio, very understandable; 9 out of 10 on the video, it would have been easier to follow if you'd had a highlighted cursor; but good pans and zooms to keep the attention focused. I have heard that javascript (and by extension, jQuery) is going to be "taking over" many of the major platforms, such as ... isn't Automattic going to replace the PHP WordPress core with javascript soon? That makes it much more important for everyone to learn. Great job. The hour and 14 minutes just flew by.
Thank you so much for the wonderful tutorials!! I truly appreciate at your awesome videos. Actually, the most interest skills that I want to learn from you is how you learn all of these techniques so fast and deep. I can't believe you came from the background that is not really conventional, for people who learn programming. I think you have very broad interest about everythings and deep knowledge. Thank you again :)
+임세호 You're very welcome :) Thank you for the compliment. It was all about figuring out how to motivate myself. I set a goal to spend an hour per day every day towards learning. After you do this for a month it becomes a habit that is hard to break I'll try to make a video on how I did it very soon.
What's the point of writing $("input[type='text']#yourName").val("Derek"); if you could just write $("#yourName").val("Derek"); ? #yourName is a unique id, no other can have it; so specifying input[type=....] is redundant
I envy you that you're this knowledgeable at this, 2 years back. While here I am, trying to learn Jquery for the first time 2 years after your comment. Wishing I learned to code 2 years before and I'm pretty sure I'll be a professional by now. I'm sure as well that you are already a professional coder! XD
Learn in One Videos for Every Programming Language
Subscribe to Bookmark them: bit.ly/2FWQZTx
C++ : ua-cam.com/video/Rub-JsjMhWY/v-deo.html
Python : ua-cam.com/video/N4mEzFDjqtA/v-deo.html
Java : ua-cam.com/video/n-xAqcBCws4/v-deo.html
PHP : ua-cam.com/video/7TF00hJI78Y/v-deo.html
MySQL : ua-cam.com/video/yPu6qV5byu4/v-deo.html
JavaScript : ua-cam.com/video/fju9ii8YsGs/v-deo.html
C# : ua-cam.com/video/lisiwUZJXqQ/v-deo.html
HTML5 : ua-cam.com/video/kDyJN7qQETA/v-deo.html
CSS3 : ua-cam.com/video/CUxH_rWSI1k/v-deo.html
JQuery : ua-cam.com/video/BWXggB-T1jQ/v-deo.html
TypeScript : ua-cam.com/video/-PR_XqW9JJU/v-deo.html
ECMAScript : ua-cam.com/video/Jakoi0G8lBg/v-deo.html
Swift : ua-cam.com/video/dKaojOZ-az8/v-deo.html
R : ua-cam.com/video/s3FozVfd7q4/v-deo.html
Haskell : ua-cam.com/video/02_H3LjqMr8/v-deo.html
Handlebars : ua-cam.com/video/4HuAnM6b2d8/v-deo.html
Bootstrap : ua-cam.com/video/gqOEoUR5RHg/v-deo.html
Rust : ua-cam.com/video/U1EFgCNLDB8/v-deo.html
Matlab : ua-cam.com/video/NSSTkkKRabI/v-deo.html
Arduino : ua-cam.com/video/QO_Jlz1qpDw/v-deo.html
Crystal : ua-cam.com/video/DxFP-Wjqtsc/v-deo.html
Emacs : ua-cam.com/video/Iagbv974GlQ/v-deo.html
Clojure : ua-cam.com/video/ciGyHkDuPAE/v-deo.html
Shell : ua-cam.com/video/hwrnmQumtPw/v-deo.html
Perl : ua-cam.com/video/WEghIXs8F6c/v-deo.html
Perl6 : ua-cam.com/video/l0zPwhgWTgM/v-deo.html
Elixir : ua-cam.com/video/pBNOavRoNL0/v-deo.html
D : ua-cam.com/video/rwZFTnf9bDU/v-deo.html
Fortran : ua-cam.com/video/__2UgFNYgf8/v-deo.html
LaTeX : ua-cam.com/video/VhmkLrOjLsw/v-deo.html
F# : ua-cam.com/video/c7eNDJN758U/v-deo.html
Kotlin : ua-cam.com/video/H_oGi8uuDpA/v-deo.html
Erlang : ua-cam.com/video/IEhwc2q1zG4/v-deo.html
Groovy : ua-cam.com/video/B98jc8hdu9g/v-deo.html
Scala : ua-cam.com/video/DzFt0YkZo8M/v-deo.html
Lua : ua-cam.com/video/iMacxZQMPXs/v-deo.html
Ruby : ua-cam.com/video/Dji9ALCgfpM/v-deo.html
Go : ua-cam.com/video/CF9S4QZuV30/v-deo.html
Objective C : ua-cam.com/video/5esQqZIJ83g/v-deo.html
Prolog : ua-cam.com/video/SykxWpFwMGs/v-deo.html
LISP : ua-cam.com/video/ymSq4wHrqyU/v-deo.html
Express : ua-cam.com/video/xDCKcNBFsuI/v-deo.html
Jade : ua-cam.com/video/l5AXcXAP4r8/v-deo.html
Sass : ua-cam.com/video/wz3kElLbEHE/v-deo.html
I think I may get my degree completed before I ever get jQuery to work sir. I talked to you about 9 months ago and you tried to assist me and til this day jquery will not work on my Mac. No one including my instructors have been able to get it to work on my Mac do you have any ideas at all? javascript works fine
@@Gojam12 Your mac might just be more trouble than it's worth at this point so I would give up on running it locally. Setup a free AWS linux cloud instance and run it there.
I noticed that I can't respond to people if they post a comment on Google+ and also block replies from anyone that is not in their circles. Please understand that if I don't respond to your comment that it is because I'm blocked from doing so. Sorry about that.
+Derek Banas what about mongodb? make a tutorial please
+Derek Banas Have you tried to logout and back in? I had something similar happen to me recently and it seemed to fix it. As if some old certificate was being cached.
Your my saviour ! I got a job, from all I learnt from your videos!!
Thanks!!
What programming language(s) you learn?
MrMirbat Javascript/Jquery, HTML/ CSS
It helped me get in the company, then I built my skills by practicing
if a human can process all this data, Just Derek's videos are enough for anything
now donate some few dollars dont be selfish
Derek, IMHO these videos you make are tremendous service to humanity. I’m not a professional programmer, but kind of a rabid enthusiast and I watch a whooooollle lot of programming videos on UA-cam. There are some other good ones out there, but yours are by far the most no nonsense, easy to understand and straight to the point - coding. I salute you for your great work and heartily encourage you in your labor of love in educating the UA-cam masses.
Thank you for the nice compliments :) I greatly appreciate them and I plan on making many more videos
Honestly, what are you doing is amazing! Not only the tutorials, but providing the code and the files, also recommending books to read (taken the PHP and MySQL one did really help me), everything is amazing and I'm really grateful! Once again great job, and please keep doing this!
This is one of the best programming tutorials I've ever seen. I can't believe how much knowledge you've put into it in 1 hour. Probably 1 week worth of reading. Amazing job! hope you make more like these.
Thank you for the compliment :) Check out my Learn in One playlist. I cover pretty much every language like this
You know, I actually have been blowing off jQuery for a while now. It was one of those "everybody can do it" libraries that I haven't used much in reality. This video is right on time. I kinda needed it so I can stop being ignorant on this topic. Thanks again Derek!
+Pavel Razuvayev Your welcome :) JQuery makes many things that are hard to do with JavaScript very easy. It solves numerous cross browser issues as well.
+Derek Banas The downside is that people going to job interviews will use it instead of pure JavaScript.
do a video on bootstrap studio,wordpress and drupal
I'm working with JQuery at my internship and I do think you have one of the best programming channels on youtube. Thanks for the videos and keep em coming!
+Rami Jibreel Thank you for the compliment :) I do my best
I just started learning JQuery a day ago...this has come in the nick of time. Thank you.
The information your providing would cost 1,000s to get normally thanks for all this free information. I am programmer and nice for refresher course.
Man. you rock. His voice is fantastic and clear. Most of all, not boring at all. If I try to learn J Query from other tutorial it might takes a several months. Nice job. Thank you.
+Richard Kim Thank you for the nice compliments :) I do my best to keep the videos exciting.
Not only your videos are on point, the comment section is also great. You reply to almost all the comments. It's the only youtube channel that I read comments also.
+Allkill Thank you :) I love to interact with everyone and I love that many people will point out things I forgot or improve on my videos.
Just started a web project for university and really needed a JQuery refresher, thanks again Derek!
+George Park You're very welcome :)
Dude your tutorials are the best ones. "jQuery book in one video tutorial". I will recommend this video to everyone who is new to jQuery or just wants to review all these awesome things that you just showed.
+Hetfield Thank you for the nice compliments :)
derek is better than all other youtubers who teaches programming because they mostly teach theory but derek focuses on programming thanks for that sir.
Thank you for the nice compliment :) I'll keep trying to do my best
What I want to know is how you use jQuery to read minds? I was just thinking just this morning how great it would be if somebody made a complete jQuery tutorial, start to finish, including ajax techniques, all in a single video, and posted it to youtube. And sure enough, boom... here it is! Dude, you rock!
+Ted Weddell Thank you :) I'm very happy that I could help out.
When I want to understand a language in about 1 hour and 14 minutes time, I watch your videos.
When I want to understand a language in about a semester, and waste a ton of money through the guise of a prestigious educational institution, I go to school.
~
As a side note.
Did you ever know that you're my hero? You're everything I wish I could be.
Your lessons help our coding soar higher than an eagle..
YOU are the wind beneath our wings.
+Sid P Thank you for the very nice compliment :) You can definitely do anything that I can do. I wish you all of the best in life.
It's not everyday you come across a tutorial that is so well explained and articulated and for that Sir I can't thankyou enough. The amount of time and effort you have taken to compile all this and literally spoon feed it to us all is so greatly appreciated. Hands down the best tutorial on the internet explaining JQuery. We love you !!!! ))))
Thank you for taking the time to write such a nice message :) I greatly appreciate it!
Brilliant tutoriol once again Derek !
0. pre-search and know what is jQuery
1. read some basic documentations
2. watch the video
3. download the code play with it
4. next day re-watch the tutoriol and use the pause button this time
5. now you know almost everything about jQuery !
But I would be even happier if you can make a project with using all technologies html css bootstrap jquery ajax etc. that would be great way to use the knowledge for us.
+ Maybe can you tell me how to find such projects on internet? I would like to see and re-do these projects with my own skills again
Thank you :D
Thank you very much and I agree with your step-by-step plan. JQuery is pretty straight forward in how it works. For most languages I'd say to test your knowledge here projecteuler.net/
I'm taking on a personal challenge to become a developer and have started a blog to track my progress. This month im focused on jquery, ajax/json and bootstrap. I like the steps you've set out and plan to start them today. Seeing that Derek agrees with your plan id love to hear what you think about learning ajax/json and bootstrap. what steps should I take? I just need a functional understanding in order to actually program my own projects.
This tutorial is really really good for those persons who are want to learn JQuery as less time as possible. I personally like it so much. Thanks a lot for it.
Thank you very much :)
Wonderful! This is the perfect way to get a broad and deep idea of what jquery offers without having to grind through a slew of introductory material. Time well spent. Thanks!
+Wayne Izatt Thank you for the compliment :) I'm glad you liked it.
Derek Banas is the most amazing person I've ever seen on UA-cam. This Dude know allllllllllll!!!
Thank you for the nice compliment :)
You know whats really cool about JQ?
How you are Target/select multiple things in one query.
I recently found out about this.
so if you have multiple rows and columns in your code you can target as such.
$(".col-lg-6:eq(2) .square:eq(2)").css("backgroundColor","green");
Note that counting for programs starts at one so in this case I am targeting the 3rd Row and the 3rd Column
I'm so happy to find such a clear, concise resource to brush up on the technology currently available! Thank you VERY much for the time you dedicate to helping others!!!
Thank you :) I'm very happy to help
Really outstanding tutorials Derek!!... I've been watching so many of these crash courses and love the pace! Idea for a series for you, "Programming for kids". I have a 8yr daughter who is hot on scratch and I'm keen to move her onto Java.
+Justin Davis Thank you very much :) I have been thinking for a long time how I code make a programming for kids video. I'll think about it.
Dude... your channel is amazing. It is literally a goldmine.
+JazzJazzy Thank you :) I'm very happy that you like it
3:08 well, rappers do get dollar signs...
i just love how your videos are straight forward. thank you for the great job! finaly learned jquery after years running from it.
+Shirleyson Kaisser Thank you for the compliment :) I'm very happy that my video helped.
Hi Derek, this was my first learning of jQuery. thanks a lot for making it so simple to understand :)
I'm very happy that I could help :)
Your tutorials are great! This one just helped me again! You have a great gift to explain. Thank you for your work Derek:)
Thank you for the nice compliment :) you're very welcome
Seriuously dude! How in the world do you do these tutorials? I’ve been developing for many years and I find it amazing how much information you pack into these tutorials! You rock man!
Thank you for the nice compliment :) I do a lot of research and then more editing
my mind is melting from all the information all at once.... i feel like Johnny reading a book.
Take small bites. View portions the video several times. That's what I do.
That was really helpful!! I finally understood JQ. Thank you so very much for your efforts Sir.
+ Derek Banas, Thanks for all your insightful resources. I must admit I've learnt from you pretty much every programming language I currently know of. I have a video request to make though. With the multitude number of Javascript libraries out there, can you kindly make a video on their similarities and their differences? The decision making process to opt for certain functionalities over others contained in those libraries?
Holy cow - this would be probably the video with the most information available on youtube :D Thanks so much - I got kinda overflowed.
Great videos on programming example of using sound light and knowledge without wasting people or own time
+Sujat Kamal thank you 😃
I like all your videos and appreciate the efforts you pour in I always find it as a quick reference and its kind of great tool for any programmer who switches between languages all you do make em worry free hassleless revision process through your fast forward tuts.
one of the best tutorials ever.. this is PACKED with good info thank you Derek
Thank you very much :)
Derek, You are the Best Tutor online ... Gratitude !
Thank you :) I try to do my best
Thank you! Your crash course on jquery is EXCELLENT.
Thank you :)
Its really fantastic .This can be watched an innumerous number of times.....
Thank you very much :)
of all the people name "Derek Banas" that I know of, you're definitely the coolest
That's funny :)
You explanations were clear and easy to understand. Too much stuff in one video. This video was perfect !
+Manikhandan Hari Thank you very much :)
I love your videos!! They’ve helped me out so much. You’re a wonderful source!
Thank you very much :)
There's one thing I never understood about jQuery. Why is it so important that all code is written in the .ready() function, if your script is at the end of the tag? If it's at the bottom of the body, it's going to execute if all other elements have finished loading.
+Bogdan Mitrovic I'm not as good as Derek, but I believe it's because the Document Object Model needs to be fully loaded so that you can select elements from it and it just ENSURES it. If it isn't then the code won't be able to store it in a jQuery object and it'll just be dead code-
// Derek you can correct me.
+Steven Garcia Yes you are correct. Thanks for helping :)
Steven Garcia Thanks for the explanation!!
You videos creates "eureka" moments! Like "now I get it!" , Bravo!
Another great tutorial Derek! Very professional and well made. I learned a lot in short amount of time.
+Marcin Kuta Thank you very much :)
Dat speed, pure glory.
I'm happy you liked it :)
I don't usually comment, but this is a really useful video. Thank you.
Thank you very much :)
Derek, you are a life saver man! I love your work.
Thank you :) I'm happy I could help
Nicely done. Concise, precise, and practical presentation on jquery
I didn't know that jquery works almost as an alternative to bootstrap. Thanks for the informative video!
I'm happy you liked it :)
catsdgs bootstrap uses jquery to make its animations etc
Derek Banas, you're a freakin hero!
Thank you :) I do my best
Thanks so much, can't wait for NodeJs!
+Pant Plus Your welcome :) It is coming next. I'll make it as soon as possible.
Thanks a lot for this tutorial. This was the one I was exactly looking for. This is excellent for beginners. Much appreciated. Please keep the good work up
+Anil Jain You're very welcome :) I'm happy that it helped.
I hope you also have advanced jQuery tutorial. Can you please share the link?
Last time I scoured the web a few yeras ago for resources you werent here yet. Im bout to go dig in : )
Great Job.. the tempo was intense, you must write code like a mad man. I'm moving on to your Javascript tutorial.
Thanks for putting these presentations together.
Thank you :) I'm very happy you liked it
This is best tutorial I have ever watched for jquery teach all concept on 1hour ...please add tutorial for Angular too ....Thanks a lot bro :)
Thank you very much :) Here is my Angular tutorial ua-cam.com/video/OPxeCiy0RdY/v-deo.html
Derek Banas Thank you :)
is there any tutorial for Angular 2 on your side ?
Very good thanks
I should have learn this before others language to save my headache.
Example a lot of rails commands include javascript
Thank you :) JQuery is awesome
Great for those above slightly beginner level.
Thank you :)
So much information. Great video again Derek!
+Jeff Schreiner Thank you :)
thank you for your videos,keep up the good work!
+Andreescu Dragos You're very welcome :)
THANK YOU SO MUCH! you helped me out with my homework soo much!
You're very welcome :)
This is the first video I have watched and it's awesome .. please keep up doing the good work and helping novice like me :)
Thank you very much :) Many more are coming
You are awesome!! I really got an idea what's going on in JQuery...
Thank you :) I'm happy I was of help
This video is absolutely amazing. Love the teaching style!
Thank you very much :)
Hi ,
i am Vietnamese , I like videos your ,it is easy to understand and simple
Thank you :) I'm glad they help
You sir have my upmost respect, keep up the good work, definitely my favourite UA-camr to date
+Jay Turbo Thank you very much :)
this tutorial is great! Thanks, and greetings from Serbia!
Keep up the good work Derek! I love all your videos!!!
Thank you very much :)
Nice and compact tutorial.
+Primož Glinšek Thank you :)
Wonderful Tutorial, Thanks!
+MrMrwilson11 Thank you :) You're very welcome
I love the way you teach!
Thank you very much :)
Muchas gracias...agradezco el excelente trabajo y aporte a la comunidad...saludos desde Argentina.
Derek, thank you for the detailed update-summary! TOP tutorial! And have a nice weekend to you and your family!
+Antik Lee Thank you :) Have a great weekend as well.
you are brilliant....very nice reviser course in short time.thank you so much
Thank you for the compliment :) I'm happy the video helped
( 30:54 ) For hover function,
this below code [ $(this) ] would have been better if you are looking to hover only the hovered element instead of every h2
$("h2").hover(function() {
$(this).css('color', 'green');
}, function() {
$(this).css('color', 'black');
});
Thank you for sharing :)
A jQuery 3 Tutorial on new features would be great !
Been looking forward to this video, thanks for the lessons!
+Marcus Last You're very welcome :)
+Orhan Akkus Thank you :) I covered C++, but I plan on making more. I'll definitely cover it from a Windows mindset when i do.
thank you so much for clearing many doubts. Thanks a lot
Thank you :) I'm happy it helped
@ 26:18 That's the way to add and SUBTRACT! different class items. lol funny.
Awesome tutorial..fast and straight forward..loved it..
Thank you :)
This was a BIG help ..hands down!!!
I'm happy that it helped :)
thank you for teaching me so much in such a short amount of time.
Awesome vid! Even though you zipped through it, you did a great job explaining what you were doing. Cheers!
Thank you very much :)
Jquery UI very good tutorial
+Rupam Shaw Thank you :)
wow great video...almost everything covered...thanks Derek.
Thank you :) I'm glad you liked it
Wow! Talk about a CRASH COURSE! This was actually exactly what I needed, because I studied jQuery a couple years ago but haven't used it much at all since - it was a great combination of refresher and intro-to-new material
Excellent voice audio, very understandable; 9 out of 10 on the video, it would have been easier to follow if you'd had a highlighted cursor; but good pans and zooms to keep the attention focused.
I have heard that javascript (and by extension, jQuery) is going to be "taking over" many of the major platforms, such as ... isn't Automattic going to replace the PHP WordPress core with javascript soon? That makes it much more important for everyone to learn.
Great job. The hour and 14 minutes just flew by.
Thank you for the nice compliments :) I'm very happy you enjoyed it
Derek - the best tutorials in web!:)
+miniSasquatch23 Thank you for the nice compliment :)
thanks man i really appreciate your work
Thank you :)
Thank you so much for the wonderful tutorials!! I truly appreciate at your awesome videos. Actually, the most interest skills that I want to learn from you is how you learn all of these techniques so fast and deep. I can't believe you came from the background that is not really conventional, for people who learn programming. I think you have very broad interest about everythings and deep knowledge. Thank you again :)
+임세호 You're very welcome :) Thank you for the compliment. It was all about figuring out how to motivate myself. I set a goal to spend an hour per day every day towards learning. After you do this for a month it becomes a habit that is hard to break I'll try to make a video on how I did it very soon.
Perfect as usual
thank you sir
+Abdessamad Chanaa Thank you :) You're very welcome
Lol. I am only 20 minutes in and suffering from massive information overload.
+Liam Elliott It is a great deal of information to take in. It is best to print the code and take notes as you pause the video.
Another great tutorial, thanks!
Thank you :)
Love your programming tuts AND your cooking skills! BTW, I have a request... Can you do a SVG tutorial, please? It would be of much help!
+Meme Daniel Thank you :) I'll see what I can do.
Best video on the subject
Thank you :) I did my best
What's the point of writing $("input[type='text']#yourName").val("Derek"); if you could just write $("#yourName").val("Derek"); ? #yourName is a unique id, no other can have it; so specifying input[type=....] is redundant
yup, noticed that too
I'm pretty sure you have figured it out already but the input type makes it more specific
I envy you that you're this knowledgeable at this, 2 years back. While here I am, trying to learn Jquery for the first time 2 years after your comment. Wishing I learned to code 2 years before and I'm pretty sure I'll be a professional by now. I'm sure as well that you are already a professional coder! XD
Thanks a lot Derek! Keep on doing the good work!!!
I'm very happy you liked it :)
thank you very much Derek
Thank you. well explained
I'm happy to help :)
Derek - you are awesome!
Thank you very much :) I try to do my best