What better way to make a form having a autosubmit when a field is completely filled? I need him to do it when it reaches 7 characters in the field.
Advertisement
Answer
JavaScript
x
20
20
1
<html>
2
<head>
3
<script type="text/javascript">//<![CDATA[
4
window.onload=function() {
5
document.getElementById('myField').oninput=function() {
6
if (this.value.length >= 7) {
7
document.getElementById('myForm').submit();
8
}
9
};
10
};
11
//]]>
12
</script>
13
</head>
14
<body>
15
<form id="myForm" method="post" action="thispage.php">
16
<input id="myField" name="myField" type="text" />
17
</form>
18
</body>
19
</html>
20
would probably do the trick. However, what if the user makes a mistake on the 7th character? It seems a bit user-unfriendly to automatically submit the form like this.