Scripts and functions that I have written or found useful

Javascript automatically submit a form

September 8th, 2006 Posted in Javascript

Simply remove the sumit button and place this after the form. Once your browser reads in this script the form will submit.

JAVASCRIPT:
  1. document.form1.submit();

Post a Comment