Hi, Does anyone know how to automatically submit a form via AJAX, without, having to explicitly click on the submit button.
For example, say I have the following form:
<form id="form1" method="post" action="" name="form1">
Rows: <input type="text" name="rows" id="rows" /> <br/ >
Columns<input type="text" name="columns" id="columns"> <br/>
</form>
When the user fills in the columns textbox I want the form to be submitted. I know how to use AJAX, but I want it triggered on keyup event on columns.