D
D
Dmitry2021-07-16 17:00:57
JavaScript
Dmitry, 2021-07-16 17:00:57

How to change hover to click, when adaptive?

Please tell me, there is a script when you hover over the link "Țiglă modulară REGLE", a block appears. How can I make it so that with a maximum width of, for example, 1024px, other blocks appear on click only on the "s" button.

Sample code below:

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Deeno, 2021-07-16
@Deeno

let div = document.querySelector("div");

if (window.innerWidth > 768) {
  div.addEventListener("mouseover", function () {
    console.log("works");
  });
} else if (window.innerWidth < 768) {
  div.addEventListener("click", function () {
    console.log("works");
  });
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question