submit form button click via js 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: javascript submit a form with id

// 1. Acquire a reference to our <form>.
//    This can also be done by setting <form name="blub" id="myAwsomeForm">:
//       var form = document.forms.blub;

var form = document.getElementById("myAwsomeForm");


// 2. Get a reference to our preferred element (link/button, see below) and
//    add an event listener for the "click" event.
document.getElementById("your-link-or-button-id").addEventListener("click", function () {
  form.submit();
});

// 3. any site in your javascript code:
document.getElementById('myAwsomeForm').submit();

Example 3: how to create a form without a submit button javascript

//you have to have the form tag in this format 
<form id="myFunction" onClick= { myFunction } >
 <input type="file" name="fileToUpload" id="myFunction" />
</form>

//from there you would have to create a function 
function myFunction() { 
          document.getElementById("myFunction").submit(); 
        }
//if this does not work, start to pray lol and do a lot of digging in 
//the browser, good luck !

Example 4: halt button from submitting js

cell2.innerHTML = "<button type='button' class='remove-condition' onclick='removeCondition()'>X</button></td>";