blob: 4511dcfe13e364f65b2f9a9b3d57a8359e3f8a1c [file] [log] [blame]
<html>
<body>
<form id="form1" action="simple_page.html" method="post">
<input type="text" name="name" value="Name"><br>
<input type="text" name="address" value="Address"><br>
<input type="text" name="city" value="City"><br>
</form>
</body>
<script>
document.addEventListener('touchend', function(e) {
document.forms['form1'].submit();
}, false);
</script>
</html>