Is there a way that you can check if there isn't a input selected (text input)
I tried
if(!$('input').is(":selected")) {
alert('hoi');
};
but it doesn't work
I dont want to use focus out
because if i'm going from textfield 1 to textfield 2 the alert comes, so I'm looking for a code that do: if all the inputs arn't focussed then the alert comes on the screen