JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" name="proyecto.nombre" onkeypress="alert(this)"/>
<input type="text" name="proyecto.codigo" />

JavaScript

$("body").on("keypress", "input[name^=proyecto]", function(event){
		if(event.charCode===13){
			event.preventDefault();
		}
	});