Answer the question
In order to leave comments, you need to log in
Why does the popup close all at once?
Here on this site I made a window, everything is in the source tab - the site
I made a code so that the popup closes on a click outside the popup -
modalOverlay.onclick = function(event) {
if (event.target != modal) {
modalOverlay.classList.toggle('active')
}
}
Answer the question
In order to leave comments, you need to log in
Vanga toaster mode on: probably you mean the indentation set on the body tag? You need to reset its margin
body {
margin: 0;
}
It seems that I solved the problem by rewriting the code
modalOverlay.onclick = function(event) {
if (event.target.contains(modal)) {
modalOverlay.classList.toggle('active')
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question