sample.js
//Enterキーを押してsubmitされないよう設定
$(function() {
$(document).on("keypress", "input:not(.allow_submit)", function(event) {
return event.which !== 13;
});
});
Go to list of users who liked
More than 3 years have passed since last update.
//Enterキーを押してsubmitされないよう設定
$(function() {
$(document).on("keypress", "input:not(.allow_submit)", function(event) {
return event.which !== 13;
});
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked