JavaScript & jQuery Tutorial for Beginners - 8 of 9 - jQuery Traversing

preview_player
Показать описание
jQuery Traversing. This tutorial demonstrates jQuery Traversing. This is a good tutorial for beginners.

Link to the code used in this video.

jQuery website
Рекомендации по теме
Комментарии
Автор

I am a Chinese man. I am not a good English listener but I can understand you well. Thanks a lot.

TheCndra
Автор

i agree. you are a very good teacher. i watched the 9 part series maybe 4 or 5 times, each time narrowing it down to fewer and fewer towards the end. today i applied part of vid #8 to a problem i have been having on my website for months, and it resolved it.
now that is teaching.

youpattube
Автор

You should be teaching teachers how to teach mate! bloody Legend you are sir. hats off!!

jideolu
Автор

5:50 for this particular example you could also use the adjacent selector $("h1 + div") to only select divs that immediately follow an h1. .next() and .prev() are obviously much more powerful but using either is fine.

thank you for creating such an ideal video tutorial series on jQuery. jQuery offers so much potential that it's hard to see myself in web programming in tomorrow's internet without it.

sonikkuffffff
Автор

thank for your tutorials, very clear and informative. I'm learning web design at college and this helps me so much better than what my lecturer delivers.

nam.truong
Автор

Superb.. i have seen complete jquery tutorial.. great work keep it up.

irannakalyani
Автор

Great job! Many thanks.  Your tutorials are excellent and easy to follow.

Zedd
Автор

Top class tutorials, thanks a lot from Morocco!

metalpower
Автор

Very good job! You are a great teacher! Thank you!

cleverusername
Автор

This is very clear and thanks for doing a Great job!

wayblakey
Автор

I do agree with all thumbs up. Great job.

pedroantoniooliveira
Автор

Great videos - I'd just make one suggestion - it would be nice to see the html and .js windows side by side, is that possible?

WinterBot
Автор

many thanks. I appreciate your tutorials :)

UrielShuraki
Автор

sure... $ for startin a command in jquery, click for the action, h1 to reffer the click (click what?) and function to make a function of actions that happans after (click)ing (h1)

harushdesign
Автор

with these tutorials, you should include how to reverse the action when you click the event agian

msiga
Автор

I've been watching all jQuery series of yours. Thanks. I got kinda dumb/mean question. What are practical applications regarding sibling etc ? Are they in use in rather complex sites ?

turboromy
Автор

DO you need write "$("h1").click(function()?"

kazu
Автор

first() Get the first selected element:

$(document).ready(function() {
$("h1").click(function() {
$("p").first().css("background-color", "red");
});
});



Can you please tell me how to make the corresponding h1's first "p" to be made red??
like:

$("h1").click(function() {
$(this).first(p).css("background-color", "red");
});

arunasindhuragorantla
Автор

GOD DAMN HOW MANY FUCKING METHODS ARE THERE!?

redpilledpatriot
Автор

Okay... Confusion this isn't for me! Good tutorial though.

PceFuI