Skip to content

Instantly share code, notes, and snippets.

@SMaguina
Last active August 29, 2015 14:18
Show Gist options
  • Save SMaguina/3e5125fc7585336c3c50 to your computer and use it in GitHub Desktop.
Save SMaguina/3e5125fc7585336c3c50 to your computer and use it in GitHub Desktop.
Lesson 3/javascript, jquery
Javascript: For-loop in jQuery to change CSS properties in the DOM
$(function() {
var rows = $(".my-row");
console.log("row function");
for(var i=0; i<rows.length; ++i) {
if (i%2===0) {
$(rows[i]).css("background-color", "grey");
};
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment