Hello there,
If you're talking about automatically entering an Enter key to trigger a submit event, you can use this,
$("#formID").submit();
To trigger this event after a button has been pressed, try this:
$("#buttonID").click(function() {
$("#formID").submit(); // submits form
});
-------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept it as an answer--