Skip to content

Instantly share code, notes, and snippets.

View aalises's full-sized avatar
🥑
Bring something incomprehensible into the world

Albert Alises aalises

🥑
Bring something incomprehensible into the world
  • oliva.health
  • Barcelona, Spain
  • 10:40 (UTC +02:00)
View GitHub Profile
//VERSION 1
document.addEventListener("DOMContentLoaded", function() {
var textoHover = document.querySelector("body > nav.laynav.desktop-nav.show-submenu-on-hover.submenu-type-horizontal.laynav-position-top-left.arrangement-horizontal.position-top.is-fixed.primary > ul > li.servicios-menu.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-216");
function addEventListeners() {
textoHover.addEventListener("mouseover", handleMouseOver);
textoHover.addEventListener("mouseout", handleMouseOut);
}