Created
May 17, 2019 12:03
-
-
Save bcaccinolo/bf394be3178ad31764e9e25647fda97d to your computer and use it in GitHub Desktop.
This file contains 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
body = window.document.getElementsByTagName('body')[0]; | |
body.addEventListener('mouseenter', function(ev) { | |
ev.preventDefault; | |
if(ev.target.tagName !== 'TD') { | |
return; | |
} | |
ev.target.className = "bouya"; | |
}, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment