Created
September 28, 2015 22:34
-
-
Save hom3chuk/692bf12fe7dac2486212 to your computer and use it in GitHub Desktop.
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
// See https://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit, jQuery version with arrays and objects support | |
function post(path, parameters) { | |
var form = $('<form></form>'); | |
form.attr("method", "post"); | |
form.attr("action", path); | |
$.each(parameters, function(key, value) { | |
if ( typeof value == 'object' || typeof value == 'array' ){ | |
$.each(value, function(subkey, subvalue) { | |
var field = $('<input />'); | |
field.attr("type", "hidden"); | |
field.attr("name", key+'[]'); | |
field.attr("value", subvalue); | |
form.append(field); | |
}); | |
} else { | |
var field = $('<input />'); | |
field.attr("type", "hidden"); | |
field.attr("name", key); | |
field.attr("value", value); | |
form.append(field); | |
} | |
}); | |
$(document.body).append(form); | |
form.submit(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
function post
already creates a variable & looks better