Hi! Is it possible to submit just one element in a form (not the whole form)? Something like document.form.getElementById('id').Submit(); Spee
No, only a form can be submitted, an element cannot. You can have multiple forms, and submit one of them. document.forms[1].submit()