+ 2
js error when slides in carousel is duplicated after changing web tab
- I get an error in the console whenever I minimize my browser while my project runs it always shows the error: "Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node. at HTMLDivElement.<anonymous>" - With this error, my oldest slides are not deleted and new slides continue to be created. +You can change "overflow: hidden" in ".carousel-content" to "overflow: visible" to see the error - Here is the link: https://code.sololearn.com/WFsuwE16wpZp Sorry my code looks messy. I still have a lot to learn
4 Respostas
0
Don't name functions with capital letters. Although such functions absolutely valid, there is naming convention to use capital letters only for function constructors.
0
Always wrap your code in window.onload or attach DOMContentLoaded event listener to document right from the beginning, unless you really know what you're doing. In your code you defined a bunch of variables and assigned DOM elements to them while your DOM isn't loaded.
0
I appreciate you taking the time to help me troubleshoot but the error seems to persist when I try minimizing the browser or switching tabs