Fulltext results:
- Automatic Submission of a Form if an Element is changed
- mit the form if an element changes, you can use <code> onChange="this.form.submit()" </code> ===== Example ===== <code html> <form action="index.jsp" method="post"> <select onChange="this... two</option> <option value="3">three</option> </select> </form> </code> {{tag>javascript html}}
- Reload Page
- ====== Reload Page ====== <code javascript> location.reload(true); </code> {{tag>javascript}}