Skip to content

Instantly share code, notes, and snippets.

@anandsunku
Created July 6, 2016 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anandsunku/55366ba4ec10f9673ae34450f25e0864 to your computer and use it in GitHub Desktop.
Save anandsunku/55366ba4ec10f9673ae34450f25e0864 to your computer and use it in GitHub Desktop.
functional dom manipulation
var lbl1 = document.querySelectorAll("label");
lbl1.forEach(function(ol){
if(ol.textContent == "Username:") {
ol.style.backgroundColor = "#f00";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment