Javascripts
Use blur() to trigger "focus out" when enter-key is pressed
kimsooil
2019. 12. 5. 11:40
$(".updateWhenTyped").keypress(function(e){
if(e.which == 13){
$(this).blur(); // losing focus
}
});