$(function(){
$("input.enter_submit").keydown(function(e){
if(e.keyCode == 13) { e.target.form.submit() };
});
});

