DETECT WHEN USER SWITCHES A TAB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <p>hi hello everyone please subscribe my youtube channel</p> <script> document.addEventListener('visibilitychange' ,function(){ if (document.visibilityState == "visible") { document.title = "active tab" }else{ document.title = "inactive tab" } }) </script> </body> </html> WATCH THIS VIDEO TO SEE HOW IT WORKS this code changes the title of the document inactive tab when the user goes to another tab otherwise when user is on the same page then it shows