Skip to content

Instantly share code, notes, and snippets.

@joao
Last active February 4, 2020 21:46
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 joao/3d01d394c3e42e71c824da9af513bc1d to your computer and use it in GitHub Desktop.
Save joao/3d01d394c3e42e71c824da9af513bc1d to your computer and use it in GitHub Desktop.
RR test
<style type="text/css">
h1 {
font-family: sans-serif;
color: pink;
cursor: pointer;
font-size: 36px;
}
h1.blue {
color: blue;
}
</style>
<body>
<h1> Maria João</h1>
<script>
heading = document.getElementByTagName('h1')[0]
heading.addEventListener("click", changeColor);
function changeColor() {
heading.classList.toggle('blue');
}
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment