Фрагменты кода jQuery, чтобы проверить, выбран ли элемент (может использоваться для проверки фокусировки ввода).
//this is one way to do it
console.log($(this).is(":focus"));
//this is another way
function itemHasFocus(id)
{
var output = false;
console.log(id);
//loop for all fields in the form
$.each($('#'+id+' :input'), function(i,v)
{
console.log($(this).is(":focus")); //check item has focus
if ($(this).is(":focus"))
{
output = true;
return false; //return false skips out of the loop
}
});
return output;
}
//returns true or false