Answers for "if element.focus"

5

javascript test if element has focus

var myElement = document.getElementById('myID');
if(myElement === document.activeElement){
    //myElement Has Focus
}
Posted by: Guest on August-01-2019
0

check if an input element has focus

const el = document.querySelector('.username');
console.log(el === document.activeElement);Code language: JavaScript (javascript)
Posted by: Guest on September-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language