I\'m wondering if it is possible to determine if a user already has a web browser open to the web application I\'m working on. It seems that they can open several instances
You can stop the page functionality when user opened another tab or another window or even another browser
$(window).blur(function(){ // code to stop functioning or close the page });