Missing click event for inside element on firefox

You have to add the pointer-events property to the span element.

button span {
  pointer-events: none;
}

Leave a Comment