javascript bind keyboard key

Solutions on MaxInterview for javascript bind keyboard key by the best coders in the world

showing results for - "javascript bind keyboard key"
Arianna
12 Mar 2016
1$(document).keypress(function(e){
2    if (e.which == 13){
3        $("#save_post").click();
4    }
5});
6
similar questions
queries leading to this page
javascript bind keyboard key