I am trying to create a form that will allow the user to send multiple forms while not having to open the form again. Basically they click a button, the form submits the data, then the page refreshes and they can send another form. Currently just submitting the form looks like this:
(function (window, $, undefined) {
gci.submitForm = function() {
let theForm = document.myForm;
theForm.submit();
}
}(window, $GCI));