Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Created May 19, 2020 20:07
Show Gist options
  • Save agustinpfs/fad471bd23e3bbb40de5550d0f9ab26b to your computer and use it in GitHub Desktop.
Save agustinpfs/fad471bd23e3bbb40de5550d0f9ab26b to your computer and use it in GitHub Desktop.
script
<script>
function cambiaColor(color) {
if (color == 'rojo') {
document.getElementById("titulo").style.color = "red"
}else {
document.getElementById("titulo").style.color = "yellow"
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment