Javascripts 2019. 12. 5. 11:40
			$(".updateWhenTyped").keypress(function(e){
				if(e.which == 13){
					$(this).blur();  // losing focus
				}
			});	
posted by kimsooil
: