Is there anyway some how I can bring popup window behind the main browser and bring the browser window in front. Here's what I am trying :
var w = window.open('google.com','Popup window');
setTimeout(function() { w.blur();window.focus();},100);
Works in Firefox after enabling advanced settings for JavaScript. Not for Chrome, Safari and other browsers.
Any help would be highly appreciated.