1 FocusBlur tab detection
Mehran Dehghanian edited this page 3 years ago

Detect tab change in react, class base:

componentDidMount() {
    window.addEventListener("focus", this.onFocus)
}

componentWillUnmount() {
    window.removeEventListener("focus", this.onFocus)
}

onFocus = () => {
    //
}