Friday, January 6, 2023

keeping track of what has the focus...

 Running this little snippet in the console, so I could keep track of where focus was as I clicked around and close things:
setInterval(()=>console.log(document.activeElement),500);

No comments:

Post a Comment