Clé du clavier JavaScript Bind

$(document).keypress(function(e){
    if (e.which == 13){
        $("#save_post").click();
    }
});
Muddy Moth