how to send enter event to input field jquery

JavaScript
var e = jQuery.Event("keydown");
e.which = 13; //choose the one you want
e.keyCode = 13;
$("#theInputToTest").trigger(e);

Source

Also in JavaScript: