function openPopup() {
const popup = window.open(‘popup.html’, ‘popup’, ‘width=400,height=300,top=100,left=100,alwaysOnTop=yes’);
// Function to bring the popup to the front
const bringToFront = () => {
if (!popup.closed) {
popup.focus();
}
};
// Attach the function to window blur and focus events
window.addEventListener(‘blur’, bringToFront);
window.addEventListener(‘focus’, bringToFront);
}
Mr. Poppers –
COOLLLLLLLLLLLLLLL
Mr. Cow and Mrs. peblo –
THIS IS THE BEST
Code –
function openPopup() {
const popup = window.open(‘popup.html’, ‘popup’, ‘width=400,height=300,top=100,left=100,alwaysOnTop=yes’);
// Function to bring the popup to the front
const bringToFront = () => {
if (!popup.closed) {
popup.focus();
}
};
// Attach the function to window blur and focus events
window.addEventListener(‘blur’, bringToFront);
window.addEventListener(‘focus’, bringToFront);
}