trying to auto submit form after text input
问题 Here is how the form is supposed to execute: <script> $(document).ready(function(){ $("#submit").click(function(){ //access token stuff var token = $("#link_input").val(); ... etc</script> . I am trying to auto submit this info once it exceeds 10 characters. Normally you fill out the text area in the input field and you click submit. Upon clicking the submit button the JS validates the text in the input box and if it's valid it executes. How can I auto-submit the text in the input box without