how to use javascript submit button code example

Example 1: javascript submit form

document.getElementById("myForm").submit();

Example 2: how to submit a form in js

document.forms["myform"].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>";

Tags:

Html Example