When a input field changes (onchange) I trigger a function to set a variable. The only problem is that the field first has to lose focus before the variable is set and I can check if the field(s) is changed, this is what I want to do when the user clicks on a tab so I can check if the user is forgotten to submit his form in the previous tab. Ho to force lose focus of all possible fields, so first the onchange
event can take place?
49
votes
4 Answers
104
votes
10
votes
You don't need jQuery for this; vanillaJS can do this, too.
document.activeElement.blur();
Note: Usually, I would check for null-ness before calling a method, but activeElement
will only ever return null if there is no ‹body›
node, so this direct call is pretty safe.
4
votes
document.body.focus()
– adeneo