「jQuery入門」formでEnterを無効にするサンプル

JSコード
$('#cftForm’).keypress(function(e){
if (e.which == 13) {
return false;
}
});

jQuery

Posted by arkgame