Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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