Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

Failed to execute 'observe' on 'IntersectionObserver': parameter 1 is not of type 'Element'

Ask Question

I have been facing an error in following code star marked option but it was executed the last run of my project but actually today it shows "Failed to execute 'observe' on 'IntersectionObserver': parameter 1 is not of type 'Element'." on the browser.

const counters = document.querySelectorAll(".counter");
  function playCounter() {
    counters.forEach((counter) => {
      counter.innerText = 0;
      let point = +counter.dataset.count;
      let step = point / 100;
      let startCount = function () {
        let displayCount = +counter.innerText;
        if (displayCount < point) {
          counter.innerText = Math.ceil(displayCount + step);
          setTimeout(startCount, 500);
        } else {
          counter.innerText = point;
      startCount();
  let counterSection = document.querySelector(".counter_wrapper");
  let scope = {
    borderMargin: "0px 0px -200px 0px",
  const sectionObserver = new IntersectionObserver(function (entry) {
    if (entry[0].isIntersecting) {
      playCounter();
  }, scope);
  **sectionObserver.observe(counterSection);**

In fact, because document.querySelector will return null if the element does not exist, and when element is passed to sectionObserver.observe(), if element is null, it will be thrown The above exception occurs Failed to execute 'observe' on 'IntersectionObserver': parameter 1 is not of type 'Element', so please ensure that the element selected by document.querySelector must exist.

Maybe you can look at this link. Uncaught TypeError: Failed to execute 'observe' on 'IntersectionObserver': parameter 1 is not of type 'Element'

While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review – Steak Overflow Nov 8, 2021 at 23:52

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.