If you have a form, and in the design specs there's no submit button inside the form, you can still make the form submit when the user presses enter. You just need to put a hidden input of type submit.
<form>
<input type="text" name="anything" />
<input type="submit" hidden />
</form>
That is it for today. Questions in the comment field bellow, thanks.