how to submit forms with the help of javascript code example
Example 1: html submit form onclick
var form = document.getElementById("form-id");
document.getElementById("your-id").addEventListener("click", function () {
form.submit();
});
Example 2: how to submit a form in js
document.forms["myform"].submit();