I have an input field with number type
In normal browsers, I\'m typing some numbers and I\'m
Hope this'll solve your issue, it simply removes the focus on active element.
document.activeElement.blur();
$("#Clicked_button_id").click(function() { $("#input_field_id").blur(); });