Skip to content

Instantly share code, notes, and snippets.

@earlgreyxxx
Created November 1, 2020 09:39
Show Gist options
  • Save earlgreyxxx/19253179ff13a54e1bc12889e22df188 to your computer and use it in GitHub Desktop.
Save earlgreyxxx/19253179ff13a54e1bc12889e22df188 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style type="text/css"><!--
form input[type=text] {
display: block;
margin: 1em 0;
padding: 5px;
}
--></style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="./jquery.enternext.js"></script>
</head>
<body>
<div id="main">
<!--メインコンテンツ-->
<div id="contents">
<div class="inner">
<form method="post">
<input type="text" name="a" value="" required />
<input type="text" name="b" value="" />
<input type="text" name="c" value="" />
<input type="text" name="d" value="" />
<input type="text" name="e" value="" />
<input type="submit" value="送信">
</form>
</div>
</div>
</div><!-- #main -->
<script type="text/javascript"><!--
(function($) {
$('form').enterNext();
})(jQuery);
//--></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment