+ 8
CSS: .blue { color: blue; } JavaScript: var x = document.getElementsByTagName("p"); x.addEventListener("click", clicked); function clicked() { x.classList.toggle("blue"); } When you clicked on something inside a paragraph tag is gives it or removes the class "blue" depending if it already has it.
26th Sep 2017, 12:39 PM
LynTon
LynTon - avatar