javascript submit a form
document.getElementById("myFormID").submit();
javascript submit a form
document.getElementById("myFormID").submit();
html submit form onclick
var form = document.getElementById("form-id");
document.getElementById("your-id").addEventListener("click", function () {
form.submit();
});
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();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us