Roger asked: "I am looking for a working fully functional JavaScript that will remove blank/empty fields from an html form before the form submit function sends the form on the it's final destination." A worthy goal. However, I think a list or forum specializing in javascript could be a better place to ask. There are several places where you can find CheckForm() function coding for javascript. These functions in the code libraries typically check required fields and send the user back to the empty field before submitting the form. (This doesn't seem to be what you want, but there may be lessons in the code.) Terminology: In the HTML form, the data sits in a "field"; the javascript counterpart is called a "variable". I suspect you'll need to create a variable "array" (variable consisting of more than one other variable), check if fields are empty, then delete the empty fields from the final array before processing further. -rt_/)