Jenda
0
Q:

jQuery check element has focus

//test if element has focus in jQuery
if ($("#myElementID").is(":focus")) {
    //I have the focus
}

//test if element has focus in plain Javascript
var myElement = document.getElementById('myID');
if(myElement === document.activeElement){
    //myElement Has Focus
}
3
var myElement = document.getElementById('myID');
if(myElement === document.activeElement){
    //myElement Has Focus
}
3

New to Communities?

Join the community