Created
December 7, 2020 14:04
-
-
Save mrabro/ef43f32ac66921be3a0dd2b8b29ff5a9 to your computer and use it in GitHub Desktop.
Submit form via Javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($){ | |
function post(path, params, method) { | |
method = method || "post"; // Set method to post by default if not specified. | |
// The rest of this code assumes you are not using a library. | |
// It can be made less wordy if you use one. | |
var form = document.createElement("form"); | |
form.setAttribute("method", method); | |
form.setAttribute("action", path); | |
for(var key in params) { | |
if(params.hasOwnProperty(key)) { | |
var hiddenField = document.createElement("input"); | |
hiddenField.setAttribute("type", "hidden"); | |
hiddenField.setAttribute("name", key); | |
hiddenField.setAttribute("value", params[key]); | |
form.appendChild(hiddenField); | |
} | |
} | |
var submitbtn = document.createElement("input"); | |
submitbtn.setAttribute("type", "hidden"); | |
submitbtn.setAttribute("name", "submitAd"); | |
form.appendChild(submitbtn); | |
document.body.appendChild(form); | |
// console.log("form:",form); | |
// return; | |
form.submit(); | |
} | |
// To use method | |
let params = {"option":"value"}; | |
let path = ""; //url for form Action | |
post(path,params,"POST"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment