I have an input field with number type
In normal browsers, I\'m typing some numbers and I\'m
Try this. This detects when you tab any element but the input and then blurs it.
$("html").children().not("#input_field_id").click(function(){ $("#input_field_id").blur(); });