Last active
January 20, 2018 17:15
-
-
Save kevinchisholm/26d79556dade79be6c61f0dd568779ad to your computer and use it in GitHub Desktop.
Iterating Over a DOM Collection with the jQuery.each Method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(selector).each(function(){ | |
//whatever you put in this function will | |
//happen to every element in the collection | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("ul li").each(function(){ | |
$(this).click(function(){ | |
$(this).css("color","red"); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("ul li.workday").each(function(){ | |
$(this).click(function(){ | |
$(this).css("color","red"); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('a'); | |
$('ul.sales li'); | |
$('div.members div'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li class="workday">Monday</li> | |
<li class="workday">Tuesday</li> | |
<li class="workday">Wednesday</li> | |
<li class="workday">Thursday</li> | |
<li class="workday">Friday</li> | |
<li>Saturday</li> | |
<li>Sunday</li> | |
<ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment