Skip to content

Instantly share code, notes, and snippets.

@dineshpithiya
Created March 10, 2018 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dineshpithiya/b7218345037a5118320807a01bbe15f4 to your computer and use it in GitHub Desktop.
Save dineshpithiya/b7218345037a5118320807a01bbe15f4 to your computer and use it in GitHub Desktop.
var form = $(this.submitButton).parents("form")
var formdata = false;
if(window.FormData)
{
formdata = new FormData(form[0]);
}
var formAction = form.attr('action');
submit_form(formAction,formdata,form,function(result)
{
console.log(result);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment