Last active
May 10, 2020 02:47
-
-
Save Hollyw00d/6bd02419c8f24f6e5256a3fd7c337deb to your computer and use it in GitHub Desktop.
ESJS Events Agenda Page Code Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- HTML --> | |
<a href="#" id="link">My Kewl Link</a> | |
/* CSS */ | |
#link { | |
color: green; | |
text-decoration: none; | |
} | |
.active-blue { | |
color: blue !important; | |
text-decoration: underline !important; | |
} | |
// JS | |
var link = document.getElementById('link'); | |
link.addEventListener('click', function(e) { | |
e.preventDefault(); | |
this.classList.toggle('active-blue'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment