I currently have:
$("#your_email").val(this.defaultValue;)
I want to cycle through all the elements of the form and reset them to the default
you don't need jQuery for this, just get the dom form element and call reset () on it.
Or, select using jQuery, for example:
$("#myFormId")[0].reset();