Here is my requirement,
I\'m working on a enterprise application which is quite old, and it supports IE browser only. Now, there are chances that the user could open mul
If I understand your question correctly, setting a timeout for a Javascript alert in one page then move to another tab, the alert appearing after the timeout will trigger tab switch.
setTimeout(function(){ alert("Switched tabs"); }, 5000);